
spring node
jiking233
这个作者很懒,什么都没留下…
展开
-
spring文档阅读笔记(一)
1. p-namespace<bean name="john-modern" class="com.example.Person" p:name="John Doe" p:spouse-ref="jane"/>2.c-namespce <!-- traditional declaration --> <bean原创 2018-04-13 11:33:59 · 190 阅读 · 0 评论 -
spring文档阅读笔记(二)
1.实现beanPostProcesor(后置处理器理)bean初始化完成前后的操作(调用用户定义的init-method的前后操作)public class InstantiationTracingBeanPostProcessor implements BeanPostProcessor { // simply return the instantiated bean as-is ...原创 2018-04-13 11:34:38 · 169 阅读 · 0 评论 -
spring文档阅读笔记(三)
1.@Required注释在set方法上 这个注释仅仅表明,受影响的bean属性必须在配置时被填充,通过一个bean定义中的显式属性值或通过自动连接来填充。@Required public void setMovieFinder(MovieFinder movieFinder) { this.movieFinder = movieFinder; } 2.@Autow...原创 2018-04-13 11:35:14 · 235 阅读 · 0 评论 -
spring文档阅读笔记(四)
1.泛化@Qualifier在很多情况下,仅仅使用注解就足够了。而且这一点在注解服务更为泛化的情况下更为有用。比如说,开发者需要提供一个线下的目录的话,可以参考如下的定义:@Target({ElementType.FIELD, ElementType.PARAMETER}) @Retention(RetentionPolicy.RUNTIME) @Qualifier public @interfa...原创 2018-04-13 11:35:41 · 153 阅读 · 0 评论 -
spring文档阅读笔记(五)
1.一种是propertyEditorpublic class MyEditor extends PropertiesEditor { @Override public void setAsText(String source) throws IllegalArgumentException { SimpleDateFormat sdf = getDate(sour...原创 2018-04-13 11:36:12 · 175 阅读 · 0 评论