Category Archives: 心情随笔

转《Spring Bean 初始化之InitializingBean, init-method 和 PostConstruct》

https://segmentfault.com/a/1190000014105687

  1. spring bean的初始化执行顺序:构造方法(依赖注入完成) --> @PostConstruct注解的方法 --> afterPropertiesSet方法 --> init-method指定的方法。具体可以参考例子
  2. afterPropertiesSet通过接口实现方式调用(效率上高一点),@PostConstruct和init-method都是通过反射机制调用

[......]

继续阅读

给p12证书更换密码

1先导出成无密码的
openssl pkcs12 -in protected.p12 -nodes -out temp.pem
# -> Enter password

2再加密码
openssl pkcs12 -export -in temp.pem -out unprotected.p12
# -> Just press [return] twice for no password
3删除临时文件
rm temp.pem

 

 [......]

继续阅读