注解有:@Controller 标注是一个控制层
@Service :标注是一个业务层
@Repository:标注是一个持久层
@Configuration:表示是一个配置类
@ComponentScan:表示扫描包与spring bean.xml文件中的扫描包效果一致
下面看是示例:
一:这是一个配置类
package com.aaa.config;
import com.aaa.pojo.Person;
import org.springframework.context.annotation.*;
import org.springframework.stereotype.Controller;
import org.springframework.stereotype.Service;
@Configuration //告诉spring这是一个配置类
/*
@ComponentScan指定扫描包
Filter[] includeFilters 指定只扫描那些包
Filter[] excludeFilters() 指定不扫描那些包
*/
/*
* excludeFilters={
@ComponentScan.Filter(type = FilterType.ANNOTATION,classes = {
Controller.class, Service.class
})
}
指定扫描的时候按照什么规则排除那些组件
*
*includeFilters ={
@ComponentScan.Filter(type = FilterType.ANNOTATION,classes = {Controller.class})
},useDefaultFilters = false
指定只扫描那些包, @ComPonentScan 默认是指定的包都生效
* */
/*
* @ComponentScans指定扫描策略 可以写多个@ComponentScan
* 可以多写几个规则
* */
@ComponentScan(value = "com.aaa")
public class MainConfig {
@Bean("persons")
//@Bean代表的就是注册到spring容器中的 相当于以前 new Person
//@Bean中可以指定注册到spring中的id名
public Person person(){
return new Person("liSi",13);
}
}
业务层:
package com.aaa.service;
import org.springframework.stereotype.Service;
@Service
public class BookService {
}
控制器层
package com.aaa.controller;
import org.springframework.stereotype.Controller;
@Controller
public class BookController {
}
package com.aaa.dao;
持久层
import org.springframework.stereotype.Repository;
@Repository
public class BookDao {
}
测试
//使用配置类进行调试
@Test
public void ATest(){
ApplicationContext apx = new AnnotationConfigApplicationContext(MainConfig.class);
Person bean = apx.getBean(Person.class);
System.out.println(bean);
//查看注册在spring 中的id值
String[] bt = apx.getBeanNamesForType(Person.class);
for (String s : bt) {
System.out.println(s);
}
}
总结:使用了这写注解之后,就不需要写spring的xml文件了
方便了我们的开发,注解减少了代码量。