您好,登錄后才能下訂單哦!
springboot中Hello World Application的探究是怎樣的,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.9.RELEASE</version> </parent> spring-boot-starter-parent的父項目: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>1.5.9.RELEASE</version> <relativePath>../../spring-boot-dependencies</relativePath> </parent> spring-boot-dependencies真正來管理Spring Boot項目中所有的依賴版本
Spring Boot的版本仲裁中心,以后我們導入依賴默認不需要寫版本(沒有在spring-boot-dependencies中的依賴就需要聲明版本號)
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
spring-boot-starter-web :
spring-boot-starter: spring boot場景啟動器
/** * @SpringBootApplication 來標注一個主程序類,說明這是一個Spring boot應用 */ @SpringBootApplication public class HelloWorldMainApplication { public static void main(String[] args) { //啟動Spring應用 SpringApplication.run(HelloWorldMainApplication.class, args); } }
@SpringBootApplication: Spring Boot應用注解,標注在某個類上說明這是Spring Boot應用的主入口類,SpringBoot就應該運行這個類的main方法來啟動應用SpringBoot應用
@SpringBootAppliation:
@Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) @Documented @Inherited @SpringBootConfiguration @EnableAutoConfiguration @ComponentScan( excludeFilters = {@Filter( type = FilterType.CUSTOM, classes = {TypeExcludeFilter.class} ), @Filter( type = FilterType.CUSTOM, classes = {AutoConfigurationExcludeFilter.class} )} ) public @interface SpringBootApplication { @AliasFor( annotation = EnableAutoConfiguration.class, attribute = "exclude" ) Class<?>[] exclude() default {}; @AliasFor( annotation = EnableAutoConfiguration.class, attribute = "excludeName" ) String[] excludeName() default {}; @AliasFor( annotation = ComponentScan.class, attribute = "basePackages" ) String[] scanBasePackages() default {}; @AliasFor( annotation = ComponentScan.class, attribute = "basePackageClasses" ) Class<?>[] scanBasePackageClasses() default {}; }
@SpringBootConfiguration:
SpringBoot的配置類,標準在某個類上,表示這是一個SpringBoot的配置類
@Configuration:配置類(配置文件) -- 也是一個組件Component
@EnableAutoConfiguration:
開啟自動配置功能
看完上述內容,你們掌握springboot中Hello World Application的探究是怎樣的的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。