对springBoot常用注解进行封装

简介: 对springBoot常用注解进行封装
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented@Inherited@EnableAsync@EnableScheduling@SpringBootApplication@EnableTransactionManagement@Import({EntityScanRegister.class})
public@interfaceOpenBootApplication {
@AliasFor(annotation=SpringBootApplication.class)
String[] scanBasePackages() default {};
@AliasFor(annotation=SpringBootApplication.class)
Class<?>[] exclude() default {};
}
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented@Inherited@OpenBootApplication@EnableDiscoveryClientpublic@interfaceOpenCloudApplication {
@AliasFor(annotation=OpenBootApplication.class)
String[] scanBasePackages() default {};
@AliasFor(annotation=OpenBootApplication.class)
Class<?>[] exclude() default {};
}
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented@Controller@ResponseBody@RequestMappingpublic@interfaceRestRequestMapping {
@AliasFor(value="value", annotation=Controller.class)
StringbeanName() default"";
@AliasFor(annotation=RequestMapping.class)
Stringname() default"";
@AliasFor(annotation=RequestMapping.class)
String[] value() default {};
@AliasFor(annotation=RequestMapping.class)
String[] path() default {};
@AliasFor(annotation=RequestMapping.class)
String[] params() default {};
@AliasFor(annotation=RequestMapping.class)
String[] headers() default {};
@AliasFor(annotation=RequestMapping.class)
String[] consumes() default {};
@AliasFor(annotation=RequestMapping.class)
String[] produces() default {};
}
相关文章
|
30天前
|
Java Spring 容器
如何解决spring EL注解@Value获取值为null的问题
本文探讨了在使用Spring框架时,如何避免`@Value(&quot;${xxx.xxx}&quot;)`注解导致值为null的问题。通过具体示例分析了几种常见错误场景,包括类未交给Spring管理、字段被`static`或`final`修饰以及通过`new`而非依赖注入创建对象等,提出了相应的解决方案,并强调了理解框架原理的重要性。
97 4
|
14天前
|
Java Spring
在使用Spring的`@Value`注解注入属性值时,有一些特殊字符需要注意
【10月更文挑战第9天】在使用Spring的`@Value`注解注入属性值时,需注意一些特殊字符的正确处理方法,包括空格、引号、反斜杠、新行、制表符、逗号、大括号、$、百分号及其他特殊字符。通过适当包裹或转义,确保这些字符能被正确解析和注入。
|
3天前
|
XML JSON Java
SpringBoot必须掌握的常用注解!
SpringBoot必须掌握的常用注解!
15 4
SpringBoot必须掌握的常用注解!
|
27天前
|
XML Java 数据格式
Spring从入门到入土(bean的一些子标签及注解的使用)
本文详细介绍了Spring框架中Bean的创建和使用,包括使用XML配置文件中的标签和注解来创建和管理Bean,以及如何通过构造器、Setter方法和属性注入来配置Bean。
58 9
Spring从入门到入土(bean的一些子标签及注解的使用)
|
5天前
|
Java
springboot将list封装成csv文件
springboot将list封装成csv文件
12 4
|
4天前
|
存储 缓存 Java
Spring缓存注解【@Cacheable、@CachePut、@CacheEvict、@Caching、@CacheConfig】使用及注意事项
Spring缓存注解【@Cacheable、@CachePut、@CacheEvict、@Caching、@CacheConfig】使用及注意事项
28 2
|
4天前
|
JSON Java 数据库
SpringBoot项目使用AOP及自定义注解保存操作日志
SpringBoot项目使用AOP及自定义注解保存操作日志
23 1
|
19天前
|
架构师 Java 开发者
得物面试:Springboot自动装配机制是什么?如何控制一个bean 是否加载,使用什么注解?
在40岁老架构师尼恩的读者交流群中,近期多位读者成功获得了知名互联网企业的面试机会,如得物、阿里、滴滴等。然而,面对“Spring Boot自动装配机制”等核心面试题,部分读者因准备不足而未能顺利通过。为此,尼恩团队将系统化梳理和总结这一主题,帮助大家全面提升技术水平,让面试官“爱到不能自已”。
得物面试:Springboot自动装配机制是什么?如何控制一个bean 是否加载,使用什么注解?
|
24天前
|
XML Java 数据库
Spring boot的最全注解
Spring boot的最全注解
|
25天前
|
JSON NoSQL Java
springBoot:jwt&redis&文件操作&常见请求错误代码&参数注解 (九)
该文档涵盖JWT(JSON Web Token)的组成、依赖、工具类创建及拦截器配置,并介绍了Redis的依赖配置与文件操作相关功能,包括文件上传、下载、删除及批量删除的方法。同时,文档还列举了常见的HTTP请求错误代码及其含义,并详细解释了@RequestParam与@PathVariable等参数注解的区别与用法。