2018年 08月 21日 - php插件安装

    php插件安装

    1. 新装指定编译时设置,如需要安装curl扩展
      $ cd $PHP_ROOT
      $ ./configure --with-curl
      
    2. 已安装的php,使用phpize
      $ cd $PHP_ROOT/ext/crul
      $ phpize ./configure –with-curl
      

    2018年 08月 13日 - @Autowire集合的使用

    使用自动注入集合类时候提示

    Description:
    
    Field xxx in com.XXX.xxx required a single bean, but 3 were found:
    
    Action:
    
    Consider marking one of the beans as @Primary, updating the consumer to accept multiple beans, or using @Qualifier to identify the bean that should be consumed
    

    2018年 06月 11日 - 一个优雅的Java Bean拷贝框架Orika

    Orika

    simpler, lighter and faster Java bean mapping
    -Orika是一个简单轻量级而又高效的Java Bean映射框架.

    2018年 06月 01日 - lombok引发的MyEclipse模板代码定义

    MyEclipse模板代码定义

    1. 配置路径:Preferences->Java->Editor->Templates
    2. 实现类似输入syso+代码补充快捷键Alt+/则会自动生成System.out.println();