一、注解(annotations)串列
@SpringBootApplication: 包含了@ComponentScan、@Configuration和@EnableAutoConfiguration注解,其中@ComponentScan讓spring Boot掃描到Configuration類并把它加入到程式背景關系,
@Configuration 等同于spring的XML組態檔;使用Java代碼可以檢查型別安全,
@EnableAutoConfiguration 自動配置,
@ComponentScan 組件掃描,可自動發現和裝配一些Bean,
@Component 可配合CommandLineRunner使用,在程式啟動后執行一些基礎任務,
@RestController 注解是@Controller和@ResponseBody的合集,表示這是個控制器bean,并且是將函式的回傳值直 接填入HTTP回應體中,是REST風格的控制器,
@Autowired 自動匯入,
@PathVariable 獲取引數,
@JsonBackReference 解決嵌套外鏈問題,
@RepositoryRestResourcepublic 配合spring-boot-starter-data-rest使用,
二、注解(annotations)詳解
@SpringBootApplication: 申明讓spring boot自動給程式進行必要的配置,這個配置等同于:@Configuration ,@EnableAutoConfiguration 和 @ComponentScan 三個配置,
import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplication // same as @Configuration @EnableAutoConfiguration @ComponentScanpublic class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); }}
@ResponseBody: 表示該方法的回傳結果直接寫入HTTP response body中,一般在異步獲取資料時使用,用于構建RESTful的api,在使用@RequestMapping后,回傳值通常決議為跳轉路徑,加上@responsebody后回傳結果不會被決議為跳轉路徑,而是直接寫入HTTP response body中,
比如異步獲取json資料,加上@responsebody后,會直接回傳json資料,該注解一般會配合@RequestMapping一起使用,關注公眾號程式員小樂回復關鍵字“offer”獲取演算法面試題和答案
示例代碼:
@RequestMapping(“/test”)@ResponseBodypublic String test(){ return”ok”;}
@Controller: 用于定義控制器類,在spring 專案中由控制器負責將用戶發來的URL請求轉發到對應的服務介面(service層),一般這個注解在類中,通常方法需要配合注解@RequestMapping,
示例代碼:
@Controller@RequestMapping(“/demoInfo”)publicclass DemoController { @Autowired private DemoInfoService demoInfoService; @RequestMapping("/hello") public String hello(Map<String,Object> map){ System.out.println("DemoController.hello()"); map.put("hello","from TemplateController.helloHtml"); //會使用hello.html或者hello.ftl模板進行渲染顯示. return"/hello"; }}
@RestController: 用于標注控制層組件(如struts中的action),@ResponseBody和@Controller的合集,
示例代碼:
import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;@RestController@RequestMapping(“/demoInfo2”)publicclass DemoController2 { @RequestMapping("/test") public String test(){ return"ok"; }}
@RequestMapping: 提供路由資訊,負責URL到Controller中的具體函式的映射,
@EnableAutoConfiguration: Spring Boot自動配置(auto-configuration):嘗試根據你添加的jar依賴自動配置你的Spring應用,例如,如果你的classpath下存在HSQLDB,并且你沒有手動配置任何資料庫連接beans,那么我們將自動配置一個記憶體型(in-memory)資料庫”,
你可以將@EnableAutoConfiguration或者@SpringBootApplication注解添加到一個@Configuration類上來選擇自動配置,如果發現應用了你不想要的特定自動配置類,你可以使用@EnableAutoConfiguration注解的排除屬性來禁用它們,
@ComponentScan: 表示將該類自動發現掃描組件,個人理解相當于,如果掃描到有@Component、@Controller、@Service等這些注解的類,并注冊為Bean,可以自動收集所有的Spring組件,包括@Configuration類,
我們經常使用@ComponentScan注解搜索beans,并結合@Autowired注解匯入,可以自動收集所有的Spring組件,包括@Configuration類,我們經常使用@ComponentScan注解搜索beans,并結合@Autowired注解匯入,
如果沒有配置的話,Spring Boot會掃描啟動類所在包下以及子包下的使用了@Service,@Repository等注解的類,
@Configuration: 相當于傳統的xml組態檔,如果有些第三方庫需要用到xml檔案,建議仍然通過@Configuration類作為專案的配置主類——可以使用@ImportResource注解加載xml組態檔,
@Import: 用來匯入其他配置類,
@ImportResource: 用來加載xml組態檔,
@Autowired: 自動匯入依賴的bean
@Service: 一般用于修飾service層的組件
@Repository: 使用@Repository注解可以確保DAO或者repositories提供例外轉譯,這個注解修飾的DAO或者repositories類會被ComponetScan發現并配置,同時也不需要為它們提供XML配置項,
@Bean: 用@Bean標注方法等價于XML中配置的bean,
@Value: 注入Spring boot application.properties配置的屬性的值,
示例代碼:
@Value(value = https://www.cnblogs.com/rutaha/p/“#{message}”)private String message;
@Inject: 等價于默認的@Autowired,只是沒有required屬性;
@Component: 泛指組件,當組件不好歸類的時候,我們可以使用這個注解進行標注,
@Bean: 相當于XML中的,放在方法的上面,而不是類,意思是產生一個bean,并交給spring管理,
@AutoWired: 自動匯入依賴的bean,byType方式,把配置好的Bean拿來用,完成屬性、方法的組裝,它可以對類成員變數、方法及建構式進行標注,完成自動裝配的作業,當加上(required=false)時,就算找不到bean也不報錯,
@Qualifier: 當有多個同一型別的Bean時,可以用@Qualifier(“name”)來指定,與@Autowired配合使用,@Qualifier限定描述符除了能根據名字進行注入,但能進行更細粒度的控制如何選擇候選者,具體使用方式如下:
@Autowired@Qualifier(value = https://www.cnblogs.com/rutaha/p/“demoInfoService”)private DemoInfoService demoInfoService;
@Resource(name=”name”,type=”type”): 沒有括號內內容的話,默認byName,與@Autowired干類似的事,關注公眾號有故事的程式員回復關鍵字“電子書”獲取大廠面試題和答案
三、JPA注解
@Entity: @Table(name=”“): 表明這是一個物體類,一般用于jpa這兩個注解一般一塊使用,但是如果表名和物體類名相同的話,@Table可以省略
@MappedSuperClass: 用在確定是父類的entity上,父類的屬性子類可以繼承,
@NoRepositoryBean: 一般用作父類的repository,有這個注解,spring不會去實體化該repository,
@Column: 如果欄位名與列名相同,則可以省略,
@Id: 表示該屬性為主鍵,
@GeneratedValue(strategy = GenerationType.SEQUENCE,generator = “repair_seq”): 表示主鍵生成策略是sequence(可以為Auto、IDENTITY、native等,Auto表示可在多個資料庫間切換),指定sequence的名字是repair_seq,
@SequenceGeneretor(name = “repair_seq”, sequenceName = “seq_repair”, allocationSize = 1): name為sequence的名稱,以便使用,sequenceName為資料庫的sequence名稱,兩個名稱可以一致,
@Transient: 表示該屬性并非一個到資料庫表的欄位的映射,ORM框架將忽略該屬性,如果一個屬性并非資料庫表的欄位映射,就務必將其標示為@Transient,否則,ORM框架默認其注解為@Basic,@Basic(fetch=FetchType.LAZY):標記可以指定物體屬性的加載方式
@JsonIgnore: 作用是json序列化時將Java bean中的一些屬性忽略掉,序列化和反序列化都受影響,
@JoinColumn(name=”loginId”): 一對一:本表中指向另一個表的外鍵,一對多:另一個表指向本表的外鍵,
@OneToOne、@OneToMany、@ManyToOne: 對應hibernate組態檔中的一對一,一對多,多對一,
四、springMVC相關注解
@RequestMapping: @RequestMapping(“/path”)表示該控制器處理所有“/path”的UR L請求,RequestMapping是一個用來處理請求地址映射的注解,可用于類或方法上,用于類上,表示類中的所有回應請求的方法都是以該地址作為父路徑,該注解有六個屬性:
params:指定request中必須包含某些引數值是,才讓該方法處理,
headers:指定request中必須包含某些指定的header值,才能讓該方法處理請求,
value:指定請求的實際地址,指定的地址可以是URI Template 模式
method:指定請求的method型別, GET、POST、PUT、DELETE等
consumes:指定處理請求的提交內容型別(Content-Type),如application/json,text/html;
produces:指定回傳的內容型別,僅當request請求頭中的(Accept)型別中包含該指定型別才回傳
@RequestParam: 用在方法的引數前面,
@RequestParam String a =request.getParameter(“a”),
@PathVariable: 路徑變數,如
RequestMapping(“user/get/mac/{macAddress}”)public String getByMacAddress(@PathVariable String macAddress){ //do something;}
復制代碼
引數與大括號里的名字一樣要相同,
五、全域例外處理
@ControllerAdvice: 包含@Component,可以被掃描到,統一處理例外,
@ExceptionHandler(Exception.class): 用在方法上面表示遇到這個例外就執行以下方法,
總結了一些2020年的面試題,這份面試題的包含的模塊分為19個模塊,分別是: Java 基礎、容器、多執行緒、反射、物件拷貝、Java Web 、例外、網路、設計模式、Spring/Spring MVC、Spring Boot/Spring Cloud、Hibernate、MyBatis、RabbitMQ、Kafka、Zookeeper、MySQL、Redis、JVM ,
獲取資料以上資料:關注公眾號:有故事的程式員,獲取學習資料,
記得點個關注+評論哦~
轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/233777.html
標籤:Java
上一篇:為了忽悠大廠面試官,熬夜總結了這些Spring面試題!
下一篇:字串比較出現空指標例外問題
