摘要:
@component 作用 1、@controller 控制器(注入服务)2、@service 服务(注入dao)3、@repository dao(实现dao访问)4、@component (把普通pojo实例化到spring容器中,相当于配置文件中的<bean id="" class=""/>) 阅读全文
摘要:
1、@Autowired与@Resource都可以用来装配bean. 都可以写在字段上,或写在setter方法上。 2、@Autowired默认按类型装配(这个注解是属业spring的),默认情况下必须要求依赖对象必须存在,如果要允许null 值,可以设置它的required属性为false,如:@ 阅读全文
摘要:
1.1单词边界 限定符\b指定单词边界,b是英文boundary(边界)的首字母,例如 文本:The catscattered his food all over the room. 正则表达式:cat 结果: The cat scatteredhis food all over the room. 阅读全文