摘要:
依赖倒置原则模块间的依赖通过抽象发生,实现类之间不发生直接的依赖关系,其依赖关系是通过接口或抽象类产生的 实现类依赖接口或抽象类 单一原则接口一定要做到单一职责 接口隔离原则接口尽量细化,同时接口中的方法尽量少 阅读全文
摘要:
Java反射 反射机制 RTTI 编译器在编译时打开和检查*.class文件 反射机制 运行时打开和检查*.class文件 Java反射常见的方法 java反射的应用 setAccessible(boolean bool) 设置为true,可以在任意地方访问到类的私有成员,还可以修改私有成员,即... 阅读全文
摘要:
Criteria criteria = new Criteria(); public Criteria and(Criteria criteria) { this.criteriaChain.add(criteria); return this; }和 public Criteria and(C... 阅读全文
摘要:
在cmd命令行敲击mvn clean install 默认读取的maven配置文件是D:\software\apache-maven-3.2.1\conf\settings.xml这个文件里面配置有proxy代理服务器,下载spring网站上面的jar包速度很快。有时候两个eclipse工作区间的m... 阅读全文
摘要:
spring aop pointcut 切入点是类的公共方法(私有方法不行),还是接口的方法类的公共方法可以,但是私有方法不行测试一下接口的方法是否能够捕捉到 阅读全文
摘要:
supervisor node ./bin/wwwnpm start 不会动态运行和调试程序,相当于动态部署 阅读全文
摘要:
DefaultAnnotationHandlerMappinghttp://my.oschina.net/foggy/blog/55261http://bu-choreography.iteye.com/blog/1211454http://snowolf.iteye.com/blog/162886... 阅读全文
摘要:
不然启动tomcat会提示spring的类找不到 阅读全文
摘要:
ejs版本是0.8.8,生成的views目录下面只有index.ejs and error.ejs,没有layout.ejs。D:\lianchuangfile\nodeDevelop\microblog\viewsejs的老版本0.6.1,生成的views目录下面除了index.ejs and e... 阅读全文
摘要:
使用泛型List list = new ArrayList();T t = list.get(0);不使用泛型List list = new ArrayList();T t = (T)list.get(0);List同List是一样的参考文档:http://825635381.iteye.com/b... 阅读全文
摘要:
/** * json string convert to map with javaBean */ public static Map json2map(String jsonStr, Class clazz) throws Exception { Map> ... 阅读全文