#TextHello類別的程式碼如下
@Controller @RequestMapping("/hello") public class TextHello { @GetMapping("/hello") @ResponseBody public String hello(){ return "hello,程程呀"; } }
我是在pom.xml檔案中增加依賴如下
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency>
在瀏覽器結果如下:
自動設定: pom.xml spring-boot-dependencies:核心依賴在父類工程中!我們在寫或引入springboot依賴的時候不需要指定版本號,是因為有這些版本倉庫啟動器
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency>
啟動器:就是springboot的啟動場景比如說spring-boot-starter-web,他就會幫助我們自動導入web環境下的所有依賴。而springboot會將所有的場景都變成一個個的啟動器
#@SpringBootApplication :包含@configuration,@ComponentScan,@EnableAutoConfiguration通常在主類別上
@SpringBootConfiguration :springboot的配置
@Configuration :spring配置類別
@Component :說明這也是一個spring的元件
@EnableAutoConfiguration :自動配置
#@AutoConfigurationPackage :自動配置套件
@ResponseBody:返回資訊為json形式的數據。一般來說會直接使用@RestRestController標註。
@CrossOrigin:解決跨域問題。如果沒做特殊處理,一般的@CrossOrigin都會加在控制層的類別上。除非引入了gateway網關,就無需透過註解解決跨域。
@MapperScan:以往在使用@Mapper一個個定義mapper,有了@MapperScan之後,只要指定mapper包,就不需要一個個使用@Mapper註解了。
@EnableScheduling:開啟定時任務,在類別上使用。
@Value:將外部設定檔的值動態注入。 。
@Transactional:聲明式交易註解。
@Data:lombok下的註解,使用後就不需要再寫實體類別的getter和setter方法。
@RestController:用於標註控制層元件,包含@Controller和@ResponseBody。
springboot所有的自動設定都是在啟動的時候掃描並載入:spring.factories 所有的自動設定類別都在這裡面,但是不一定會生效,要對其進行判斷對應start,就有了對應的啟動器,有了啟動器,自動組裝才會生效,然後配置成功。
@SpringBootApplication :標註這個類別是一個springboot的應用:啟動類別下的所有資源被導入 springboot理解:自動裝配,run() 全面接管springMVC配置!
Static:存放靜態資源,例如:css,js,圖片Templates:模板檔application.porperties:springboot的設定檔
properties檔案:key-value的格式
yml檔案: 階梯狀的屬性檔案
以上是springboot測試類別註解怎麼創建的詳細內容。更多資訊請關注PHP中文網其他相關文章!