springboot常见注解 2020-01-19
1,@SpringBootApplication
是springboot的核心注解,用在启动类上,是由
- @Configuration
- 加载spring,配置spring并启动spring容器;
- 启动容器@Bean注册Bean;
- 启动容器+@Component注册Bean
- 等价于<Beans></Beans>
- @EnableAutoConfiguration
- 帮助SpringBoot应用将所有符合条件的
@Configuration
配置都加载到当前SpringBoot创建并使用的IoC容器(控制反转) - 引入了AutoConfigurationImportSelector,其核心逻辑为selectImports方法:从配置文件META-INF/spring.factories加载所有可能用到的自动配置类;去重,并将exclude和excludeName属性携带的类排除;过滤,将满足条件(@Conditional)的自动配置类返回;
- 允许 Spring Boot 自动配置注解,开启这个注解之后,Spring Boot 就能根据当前类路径下的包或者类来配置 Spring Bean。
- 对于该注解的使用: @EnableConfigurationProperties(HelloProperties.class) //开启属性注入,通过@autowired注入The Hello bean will be created if the hello.enable property exists and has a value other than false
- @ComponentScan
- 在配置类上添加 @ComponentScan 注解。该注解默认会扫描该类所在的包下所有的配置类,相当于之前的 <context:component-scan>。
组件扫描。让spring Boot扫描到Configuration类并把它加入到程序上下文。
@ComponentScan注解默认就会装配标识了@Controller,@Service,@Repository,@Component注解的类到spring容器中。
2,@Repository
- 用于标注数据访问组件,即dao组件。使用@Repository注解可以确保dao或者repositories提供异常转译,这个注解修饰的DAO或者repositories类会被ComponetScan发现并配置,同时也不需要为它们提供XML配置项。
3,@Service
一般用于修饰service层的组件
4,@RestController
用于标注控制层组件(如struts中的action),表示这是个控制器bean,并且是将函数的返回值直 接填入HTTP响应体中,是REST风格的控制器;它是@Controller和@ResponseBody的合集。
5,@ResponseBody
表示该方法的返回结果直接写入HTTP response body中
一般在异步获取数据时使用,在使用@RequestMapping后,返回值通常解析为跳转路径,加上@responsebody后返回结果不会被解析为跳转路径,而是直接写入HTTP response body中。比如异步获取json数据,加上@responsebody后,会直接返回json数据。
6,@Component
泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。
7,@AutoWired
涉及到SOA面向服务的思想
byType方式。把配置好的Bean拿来用,完成属性、方法的组装,它可以对类成员变量、方法及构造函数进行标注,完成自动装配的工作。
8,@Qualifier
当有多个同一类型的Bean时,可以用@Qualifier("name")来指定。与@Autowired配合使用
9,@Resource(name="name",type="type")
没有括号内内容的话,默认byName。与@Autowired干类似的事。
10,@RequestMapping(value="A/B...")
RequestMapping是一个用来处理请求地址映射的注解;提供路由信息,负责URL到Controller中的具体函数的映射,可用于类或方法上。用于类上,表示类中的所有响应请求的方法都是以该地址作为父路径。
注意:当在控制层添加@Controller为跳转到固定return后面的页面;当在控制层添加@RestController注解则配置的视图解析器InternalResourceViewResolver不起作用,返回的内容就是Return 里的内容 //(@Controller+@ResponseBody)和@RestController功能一致 方式一与方式二
方式一
@Controller
class TestA{
@RequestMapping(value="/A/B", method = RequestMethod.POST)
@ResponseBody public String uploadImg(@RequestParam HttpServletRequest request){
return "C";
}}
方式二
@RestControllerclass TestA{
@RequestMapping(value="/A/B", method = RequestMethod.POST)
public String uploadImg(@RequestParam HttpServletRequest request){
return "C";
}}
11,@PathVariable
路径变量。参数与大括号里的参数必须一致
RequestMapping("A/B/C/{D}")
public String getDate(@PathVariable String D){
return "xxxx";
}
12,方法接受参数前的注解 @RequestParams @RequestBody
13,对数据过滤 @DateFilter
@DataFilter(subDept = true, user = false, tableAlias = "t1",deptId="dept_id",userId="user_id")
@RequestMapping("/A")
public String A(){
}
注意:这个过滤器是自己编写的
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface DataFilter {
boolean user() default true;
boolean subDept() default false;
String deptId() default "dept_id";
String userId() default "user_id";
}