Java——注解大全

原文:菜鸟的springboot常用注解总结_最强菜鸟的博客-CSDN博客

@SpringBootApplication:

用于主类上,启动入口,含@Configuration、@EnableAutoConfiguration、@ComponentScan。


@Component、@Service、@Controller、@Repository:注入容器中,普通pojo、业务逻辑层service、控制层、持久层dao


@ResponseBody:java对象转为json


@RestController:@Controller和@ResponseBody结合体


@AutoWired、@Qualifier、@Resource:在容器里面将查找到的bean返回,AutoWired按默认类型装配,若发现多个,则按名字匹配,若还有多个,则抛出异常。多个的时候如一个接口有两个类实现,结合@Qualifier指定名字使用。@Resource相当于两者配合使用的效果。


@RequestMapping、@GetMapping、@PostMapping:RequestMapping get和post都可以


@Value、@ConfigurationProperties、@PropertySource:@Value,application.yml中配置spring.profiles.active,使用方式如"${msg}","${Student.name}","hello"直接赋值。ConfigurationProperties作用于类,通过prefix指定,必须要有getter和setter才能设置成功。

PropertySource通过value="chasspath:a.properties"指定配置文件,不能用yml,作用于类上,然后就可以用ConfigurationProperties和Value了。


@Configuration、@Bean:Configuration表明这是一个配置类,Bean加入容器
@RequestParam:接收url?name=xx,这种参数,具体形式为:value=,required=默认为true,defaultValue默认值,

@RequestBody:Post请求,@RequestBody UserDto userDto或者@RequestBody String str等。只能有一个RequestBody

@PathVariable:url/{id}/{name},如@PostMapping("/pathVariable/{id}/{name}"),参数为name=

@RequestHeader:@RequestHeader(name = "Content-Type") String contentType

@CookieValue:@CookieValue(name = "myCookie") String myCookie

你可能感兴趣的:(spring,boot,java,spring,boot)