spring boot(1)

建立spring boot 項目

工具 idea

輸入圖片說明

@SpringBootApplication至關於@Configuration、@EnableAutoConfiguration和 @ComponentScan,你也能夠同時使用這3個註解。其中@Configuration、@ComponentScan是spring框架的語法,在spring 3.x就有了,用於代碼方式建立配置信息和掃描包。@EnableAutoConfiguration是spring boot語法,表示將使用自動配置。你若是下載了spring boot源碼,就會看到spring boot實現了不少starter應用,這些starter就是一些配置信息(有點相似於docker,一組環境一種應用的概念),spring boot看到引入的starter包,就能夠計算如何自動配置你的應用。html

pom文件

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<groupId>com.fsd.java</groupId>
	<artifactId>hcadmin</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<packaging>jar</packaging>

	<name>hcadmin</name>
	<description>Demo project for Spring Boot</description>

	<!-- spring boot基本環境 -->
	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>1.5.6.RELEASE</version>
		<relativePath/> <!-- lookup parent from repository -->
	</parent>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
		<java.version>1.8</java.version>
	</properties>

	<dependencies>
		<!--web應用基本環境配置 -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
<!--   html模板引擎 start-->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-thymeleaf</artifactId>
		</dependency>
		<dependency>
			<groupId>net.sourceforge.nekohtml</groupId>
			<artifactId>nekohtml</artifactId>
		</dependency>
		<!--   html模板引擎 end-->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>

<!-- Spring boot提供的一些開箱即用的應用很是容易使用,好比監控,你只須要在pom文件中引入: 引入以後,spring boot是默認開啓監控的,運行應用你能夠在瀏覽器中輸入:  http://localhost:8080/health-->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-actuator</artifactId>
		</dependency>

	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</build>


</project>

具體搭建過程,在這裏再也不贅述,idea很強大,能夠下載試試java

啓動 部署 spring boot應用

能夠直接運行main函數,web

使用maven工具 打包 或者使用ide工具提供的 maven project 裏面的 package 右鍵spring

 

 要部署運行spring boot應用,首選要打包spring boot應用,你在pom文件中看到的spring-boot-maven-plugin插件就是打包spring boot應用的。docker

進入工程目錄運行mvn package,如:apache

  D:\項目路徑> mvn package瀏覽器

  打包事後就能夠進入target目錄使用java原生命令執行這個應用了。框架

  D:\工程項目路徑下\target>java -jar 剛纔上一步產生的名字-0.0.1.jarmaven

  如此,你就看到一個基於jar包的web應用啓動了。ide

至此 spring boot 項目簡單應用到此就能夠運行了,歡迎指導交流

相關文章
相關標籤/搜索