Spring Boot有哪些常用註解?
Spring Boot中的常用註解有:@SpringBootApplication、@Repository、@Service、@RestController、@ResponseBody、@Component、@ComponentScan等等。下面本篇文章就來給大家介紹一下,希望對大家有所幫助。
1.@SpringBootApplication
這個註解是Spring Boot最核心的註解,用在 Spring Boot的主類上,標識這是一個 Spring Boot 應用,用來開啟 Spring Boot 的各項能力。實際上這個註解是@Configuration,@EnableAutoConfiguration,@ComponentScan三個註解的組合。由於這些註解一般都是一起使用,所以Spring Boot提供了一個統一的註解@SpringBootApplication。
2.@EnableAutoConfiguration
允許 Spring Boot 自動配置註解,開啟這個註解之後,Spring Boot 就能根據當前類路徑下的包或者類來配置 Spring Bean。
如:當前類路徑下有 Mybatis 這個 JAR 包,MybatisAutoConfiguration 註解就能根據相關引數來配置 Mybatis 的各個 Spring Bean。
@EnableAutoConfiguration實現的關鍵在於引入了AutoConfigurationImportSelector,其核心邏輯為selectImports方法,邏輯大致如:
● 從配置檔案META-INF/spring.factories載入所有可能用到的自動配置類;
● 去重,並將exclude和excludeName屬性攜帶的類排除;
● 過濾,將滿足條件(@Conditional)的自動配置類返回;
3.@Configuration
用於定義配置類,指出該類是 Bean 配置的資訊源,相當於傳統的xml配置檔案,一般加在主類上。如果有些第三方庫需要用到xml檔案,建議仍然通過@Configuration類作為專案的配置主類——可以使用@ImportResource註解載入xml配置檔案。
4.@ComponentScan
元件掃描。讓spring Boot掃描到Configuration類並把它加入到程式上下文。
5.@Repository
用於標註資料訪問元件,即DAO元件。
使用@Repository註解可以確保DAO或者repositories提供異常轉譯,這個註解修飾的DAO或者repositories類會被ComponetScan發現並配置,不需要為它們提供XML配置。
6.@Service
一般用於修飾service層的元件
7.@RestController
用於標註控制層元件(如struts中的action),表示這是個控制器bean,並且是將函式的返回值直 接填入HTTP響應體中,是REST風格的控制器;它是@Controller和@ResponseBody的合集。
8.@ResponseBody
表示該方法的返回結果直接寫入HTTP response body中
一般在非同步獲取資料時使用,在使用@RequestMapping後,返回值通常解析為跳轉路徑,加上@responsebody後返回結果不會被解析為跳轉路徑,而是直接寫入HTTP response body中。比如非同步獲取json資料,加上@responsebody後,會直接返回json資料。
9.@Component
泛指元件,當元件不好歸類的時候,我們可以使用這個註解進行標註。
10.@Bean
相當於XML中的,放在方法的上面,而不是類,意思是產生一個bean,並交給spring管理。
11.@AutoWired
byType方式。把配置好的Bean拿來用,完成屬性、方法的組裝,它可以對類成員變數、方法及建構函式進行標註,完成自動裝配的工作。
12.@Qualifier
當有多個同一型別的Bean時,可以用@Qualifier(“name”)來指定。與@Autowired配合使用
13.@Resource(name=“name”,type=“type”)
沒有括號內內容的話,預設byName。與@Autowired幹類似的事。
14.@RequestMapping
RequestMapping是一個用來處理請求地址對映的註解;提供路由資訊,負責URL到Controller中的具體函式的對映,可用於類或方法上。用於類上,表示類中的所有響應請求的方法都是以該地址作為父路徑。
15.RequestParam
用在方法的引數前面。例如:
@RequestParam String a =request.getParameter("a")
16.@PathVariable
路徑變數。引數與大括號裡的名字一樣要相同。例如:
RequestMapping("user/get/mac/{macAddress}") public String getByMacAddress(@PathVariable String macAddress){ //do something; }
17.@Profiles
Spring Profiles提供了一種隔離應用程式配置的方式,並讓這些配置只能在特定的環境下生效。
任何@Component或@Configuration都能被@Profile標記,從而限制載入它的時機。
@Configuration @Profile("prod") public class ProductionConfiguration { // ... }
18.@ConfigurationProperties
Spring Boot可使用註解的方式將自定義的properties檔案對映到實體bean中,比如config.properties檔案。
@Data @ConfigurationProperties("rocketmq.consumer") public class RocketMQConsumerProperties extends RocketMQProperties { private boolean enabled = true; private String consumerGroup; private MessageModel messageModel = MessageModel.CLUSTERING; private ConsumeFromWhere consumeFromWhere = ConsumeFromWhere.CONSUME_FROM_LAST_OFFSET; private int consumeThreadMin = 20; private int consumeThreadMax = 64; private int consumeConcurrentlyMaxSpan = 2000; private int pullThresholdForQueue = 1000; private int pullInterval = 0; private int consumeMessageBatchMaxSize = 1; private int pullBatchSize = 32; }
以上就是本篇文章的全部內容,希望能對大家的學習有所幫助~。