1. Lunt build 官网:http://luntbuild.javaforge.com/ Jenkins(原名Hudson) 官网:https://wiki.jenkins-ci.org/display/JENKINS/Meet+Jenkins ...

    阅读全文
  2. 错误现象: E:\test>gradle build :compileJava FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':compileJava'. > Could not find tools.jar 原因分析: 这个提示很明显是找不到JDK。所以需要设置一下JDK信息。 ...

    阅读全文
  3. Normally use the String concatenations using :  +, StringBuffer.append(), String.concat(). We always think that using ‘+’ operator for String Concatenation is slow.  This is true but not always. For Ex: String str = “Th ...

    阅读全文
  4. 原文:http://www.oracle.com/technetwork/articles/adf/part4-098813.html Oracle JDeveloper 11g makes it easy to compile applications, generate deployment artifacts (such as Java archives [JARs], Web application archives (WARs), and enterprise archive ...

    阅读全文
  5. MvcUriComponentsBuilder 和 ControllerMethodInvocationInterceptor的解读   ControllerMethodInvocationInterceptor实现了CGLIB的MethodInterceptor,所以是CGLIB动态代理的方法拦截器,从命名来看是对Controller的方法做了争强。同时也实现了org.aopalliance.intercept.MethodInterceptor private ...

    阅读全文