- 博客(6)
- 收藏
- 关注
转载 国外程序员整理的Java资源大全
构建这里搜集了用来构建应用程序的工具。Apache Maven:Maven使用声明进行构建并进行依赖管理,偏向于使用约定而不是配置进行构建。Maven优于Apache Ant。后者采用了一种过程化的方式进行配置,所以维护起来相当困难。Gradle:Gradle采用增量构建。Gradle通过Groovy编程而不是传统的XML声明进行配置。Gradle可以很好地配合Maven进行依
2015-07-06 10:51:21
742
转载 MySQL导入导出数据
1.导出整个数据库mysqldump -u 用户名 -p 数据库名 > 导出的文件名mysqldump -u root -p dataname >dataname.sql这个时候会提示要你输入root用户名的密码,输入密码后dataname数据库就成功备份在mysql/bin/目录中.2.导出一个表mysqldump -u 用户名 -p 数据库名 表名> 导出的文件
2015-07-03 14:41:44
379
转载 java.lang.OutOfMemoryError: PermGen space
先解释下什么是PermGen spacePermGen space的全称是Permanent Generation space,是指内存的永久保存区域,这一部分用于存放Class和Meta的信息,Class在被 Load的时候被放入PermGen space区域,它和存放Instance的Heap区域不同,GC(Garbage Collection)不会在主程序运行期对PermGen spac
2015-07-03 14:37:10
349
原创 网站整理
前端开发相关的优秀网站、博客、以及活跃开发者:https://github.com/jikeytang/front-end-collectSpring MVC login example:http://examples.javacodegeeks.com/enterprise-java/spring/mvc/spring-mvc-login-example/
2015-06-24 14:26:09
403
转载 30 Java Programming Tips and Best Practices for Beginners
1. Prefer returning Empty Collections instead of NullIf a program is returning a collection which does not have any value, make sure an Empty collection is returned rather than Null elements. This
2015-06-15 15:27:24
798
转载 Something about String,substring
Here are a set of diagrams to illustrate Java String's immutability.1. Declare a stringString s = new String("abcd");s stores the reference of the string object. The arro
2015-02-06 10:31:24
476
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人