随便写写,以后想到题目再改

2019-03-05  本文已影响0人  莫以有

1.Spring常用标记与注解

<bean id="" class="" >
<contructor-arg name="" value="">
<contructor-arg name="" ref="">
<property name="" value="">
<property name="" ref="">
<list><set><map><props>用于集合类
@Autowired:属于Spring 的org.springframework.beans.factory.annotation包下,可用于为类的属性、构造器、方法进行注值
@Service对应的是业务层Bean
@component (把普通pojo实例化到spring容器中,相当于配置文件中的 (<bean id="" class=""/>)
泛指各种组件
@Data,简化POJO类,不用再写那些构造方法、getter/setter,toString()了,专注定义属性。
@SuppressWarnings:告诉编译器忽略指定的警告,不用在编译完成后出现警告信息。
@RunWith 运行器
@ContextConfiguration 跟Runwith联用,引入bean

2.spring junit注意事项

以后再添加需要注意的地方

上一篇下一篇

猜你喜欢

热点阅读