@ConditionalOnBean 配置了某個特定Bean
@ConditionalOnMissingBean 沒有配置特定的Bean
@ConditionalOnClass Classpath裏有指定的類
@ConditionalOnMissingClass Classpath裏缺乏指定的類
@ConditionalOnExpression 給定的Spring Expression Language(SpEL)表達式計算結果爲true
@ConditionalOnJava Java的版本匹配特定值或者一個範圍值
@ConditionalOnJndi 參數中給定的JNDI位置必須存在一個,若是沒有給參數,則要有JNDI
InitialContext
@ConditionalOnProperty 指定的配置屬性要有一個明確的值
@ConditionalOnResource Classpath裏有指定的資源
@ConditionalOnWebApplication 這是一個Web應用程序
@ConditionalOnNotWebApplication 這不是一個Web應用程序
聲明Bean的註解:
@Component : 組件,沒有明確的角色
@Service : 在業務邏輯層(service層)使用
@Repository : 在數據訪問層(dao層)使用.
@Controller : 在展示層(MVC--SpringMVC)使用
注入Bean的註解:
@Aautowired : Spring提供的註解.
@Inject : JSR-330提供的註解
@Resource : JSR-250提供的註解
@Primary 注入時優先使用此註解下的實現類,對應org.springframework.beans.factory.NoUniqueBeanDefinitionException異常
配置文件的註解:
@Configuration : 聲明當前類是個配置類,至關於一個Spring配置的xml文件.
@ComponentScan (cn.test.demo): 自動掃描包名下全部使用 @Component @Service @Repository @Controller 的類,並註冊爲Bean
@WiselyConfiguration : 組合註解 能夠替代 @Configuration和@ComponentScan
@Bean : 註解在方法上,聲明當前方法的返回值爲一個Bean.
@Bean(initMethod="aa",destroyMethod="bb")--> 指定 aa和bb方法在構造以後.Bean銷燬以前執行.
AOP切面編程註解:
@Aspect : 聲明這是一個切面
@After @Before. @Around 定義切面,能夠直接將攔截規則(切入點 PointCut)做爲參數
@PointCut : 專門定義攔截規則 而後在 @After @Before. @Around 中調用
@Transcational : 事務處理
@Cacheable : 數據緩存
@EnableAaspectJAutoProxy : 開啓Spring 對 這個切面(Aspect )的支持
@Target (ElementType.TYPE):元註解,用來指定註解修飾類的那個成員 -->指定攔截規則
@Retention(RetentionPolicy.RUNTIME)
--->當定義的註解的@Retention爲RUNTIME時,纔可以經過運行時的反射機制來處理註解.-->指定攔截規則
Spring 經常使用配置:
@import :導入配置類
@Scope : 新建Bean的實例 @Scope("prototype") 聲明Scope 爲 Prototype
@Value : 屬性注入
@Value ("我愛你") --> 普通字符串注入
@Value ("#{systemProperties['os.name']}") -->注入操做系統屬性
@Value ("#{ T (java.lang.Math).random() * 100.0 }") --> 注入表達式結果
@Value ("#{demoService.another}") --> 注入其餘Bean屬性
@Value ( "classpath:com/wisely/highlight_spring4/ch2/el/test.txt" ) --> 注入文件資源
@Value ("http://www.baidu.com")-->注入網址資源
@Value ("${book.name}" ) --> 注入配置文件 注意: 使用的是$ 而不是 #
@PostConstruct : 在構造函數執行完以後執行
@PreDestroy : 在 Bean 銷燬以前執行
@ActiveProfiles : 用來聲明活動的 profile
@profile: 爲不一樣環境下使用不一樣的配置提供了支持
@Profile("dev") .......對方法名爲 dev-xxxx的方法提供實例化Bean
@EnableAsync : 開啓異步任務的支持(多線程)
@Asyns : 聲明這是一個異步任務,能夠在類級別 和方法級別聲明.
@EnableScheduling : 開啓對計劃任務的支持(定時器)
@Scheduled : 聲明這是一個計劃任務 支持多種計劃任務,包含 cron. fixDelay fixRate
@Scheduled (dixedDelay = 5000) 經過註解 定時更新
@Conditional : 條件註解,根據知足某一特定條件建立一個特定的Bean
@ContextConfiguration : 加載配置文件
@ContextConfiguration(classes = {TestConfig.class})
@ContextConfiguration用來加載ApplicationContext
classes屬性用來加載配置類
@WebAppCofiguration : 指定加載 ApplicationContext是一個WebApplicationContext
@Enable註解:*
@EnableAsync : 開啓異步任務的支持(多線程)
@EnableScheduling : 開啓對計劃任務的支持(定時器)
@EnableWebMVC : 開啓對Web MVC 的配置支持
@EnableAaspectJAutoProxy : 開啓Spring 對 這個切面(Aspect )的支持
@EnableConfigurationProperties 開啓對@ConfigurationProperties註解配置Bean的支持
@EnableJpaRepositories : 開啓對Spring Data JAP Repository 的支持
@EnableTransactionManagement 開啓對註解式事物的支持
@EnableCaching開啓註解是緩存的支持.
@EnableDiscoveryClient 讓服務發現服務器,使用服務器.Spring cloud 實現服務發現
@EnableEurekaServer 註冊服務器 spring cloud 實現服務註冊@
@EnableScheduling 讓spring能夠進行任務調度,功能相似於spring.xml文件中的命名空間<task:*>
@EnableCaching 開啓Cache緩存支持;
SpringMVC 經常使用註解:
@Controller : 註解在類上 聲明這個類是springmvc裏的Controller,將其聲明爲一個spring的Bean.
@RequestMapping :能夠註解在類上和方法上 映射WEB請求(訪問路徑和參數)
@RequestMapping(value= "/convert",produces+{"application/x-wisely"}) 設置訪問URL 返回值類型
@ResponseBody : 支持將返回值放入response體內 而不是返回一個頁面(返回的是一個組數據)
@RequestBody : 容許request的參數在request體中,而不是直接鏈接在地址後面 次註解放置在參數前
@Path Variable : 用來接收路徑參數 如/test/001,001爲參數,次註解放置在參數前
@RestController : @Controller + @ResponseBody 組合註解
@ControllerAdvice : 經過@ControllerAdvice能夠將對已控制器的全局配置放置在同一個位置
@ExceptionHandler : 用於全局處理控制器的異常
@ExceptionHandier(value=Exception.class) -->經過value屬性可過濾攔截器條件,攔截全部的異常
@InitBinder : 用來設置WebDataBinder , WebDataBinder用來自動綁定前臺請求參數到Model中.
@ModelAttrbuute : 綁定鍵值對到Model中,
@RunWith : 運行器
@RunWith(JUnit4.class)就是指用JUnit4來運行
@RunWith(SpringJUnit4ClassRunner.class),讓測試運行於Spring測試環境
@RunWith(Suite.class)的話就是一套測試集合,
@WebAppConfiguration("src/main/resources") : 註解在類上,用來聲明加載的ApplicationContex 是一個WebApplicationContext ,它的屬性指定的是Web資源的位置,默認爲 src/main/webapp ,自定義修改成 resource
@Before : 在 xxx 前初始化
Spring Boot 註解:
@SpringBootApplication : 是Spring Boot 項目的核心註解 主要目的是開啓自動配置
@SpringBootApplication註解是一個組合註解,主要組合了@Configuration .+@EnableAutoConfiguration.+@ComponentScan
@Value : 屬性注入,讀取properties或者 Yml 文件中的屬性
@ConfigurationProperties : 將properties屬性和一個Bean及其屬性關聯,從而實現類型安全的配置
@ConfigurationProperties(prefix = "author",locations = {"classpath:config/author.properties"})
經過@ConfigurationProperties加載配置,經過prefix屬性指定配置前綴,經過location指定配置文件位置
@EnableAutoConfiguration 註解:做用在於讓 Spring Boot 根據應用所聲明的依賴來對 Spring 框架進行自動配置 這個註解告訴Spring Boot根據添加的jar依賴猜想你想如何配置Spring。因爲spring-boot-starter-web
添加了Tomcat和Spring MVC,因此auto-configuration將假定你正在開發一個web應用並相應地對Spring進行設置。
@ Configuration 註解,以明確指出該類是 Bean 配置的信息源
@ComponentScan 註解會告知Spring掃描指定的包來初始化Spring Bean這可以確保咱們聲明的Bean可以被發現。
@ImportResource 註解加載XML配置文件
@EnableAutoConfiguration (exclude={xxxx.class}) 禁用特定的自動配置
@SpringBootApplication 註解等價於以默認屬性使用 @Configuration,@EnableAutoConfiguration和 @ComponentScan。
@SuppressWarnings註解
@SuppressWarnings("unchecked")
告訴編譯器忽略 unchecked 警告信息,如使用 list ArrayList等未進行參數化產生的警告信息
@SuppressWarnings("serial")
若是編譯器出現這樣的警告信息: The serializable class WmailCalendar does not declare a static final serialVersionUID field of type long 使用這個註釋將警告信息去掉。
@SuppressWarnings("deprecation")
若是使用了使用@Deprecated註釋的方法,編譯器將出現警告信息。使用這個註釋將警告信息去掉。
@SuppressWarnings("unchecked", "deprecation")
告訴編譯器同時忽略unchecked和deprecation的警告信息。
@SuppressWarnings(value={"unchecked", "deprecation"})
等同於@SuppressWarnings("unchecked", "deprecation")
案例
@Entity : 映射數據庫實體類
@Table(name = "S_PRODUCEINFO" ) : 表名爲 "S_PRODUCEINFO"
@Id : 聲明主鍵ID
@Column(name = "app_name", unique = true, length = 50) :對應數據庫字段,屬性
@Enumerated(EnumType. STRING) : 採用枚舉值類型和數據庫字段進行交互
@Temporal : 時間格式 映射數據庫會獲得規定時間格式的日期
@Enumerted(EnumType.STRING) HH:MM:SS 格式的日期
@Enumerted(EnumType.DATE) 獲取年月日 yyyy-MM-dd
@Enumerted(EnumType.TIME) 獲取時分秒 HH:MM:SS
@RestController 的意思就是controller裏面的方法都以json格式輸出,不用再寫什麼jackjson配置的了!java