开发环境:
ied环境:eclipse
jdk版本:1.8
maven版本:3.3.9
一、创建一个spring boot的mcv web应用程序
打开eclipse,新建maven项目
选择quickstart模板
完成maven项目的创建
参照spring的官方例子:
在pom.xml增加maven依赖
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<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.github.carter659</groupid> <artifactid>spring01</artifactid> <version> 0.0 . 1 -snapshot</version> <packaging>jar</packaging> <name>spring01</name> <url>http: //maven.apache.org</url> <properties> <project.build.sourceencoding>utf- 8 </project.build.sourceencoding> <java.version> 1.8 </java.version> </properties> <parent> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-parent</artifactid> <version> 1.4 . 2 .release</version> </parent> <dependencies> <dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-web</artifactid> </dependency> </dependencies> <build> <plugins> <plugin> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-maven-plugin</artifactid> </plugin> </plugins> </build> </project> |
添加一个控制器文件“homecontroller.java”
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package com.github.carter659.spring01; import org.springframework.stereotype.controller; import org.springframework.web.bind.annotation.requestmapping; import org.springframework.web.bind.annotation.responsebody; @controller public class homecontroller { @requestmapping ( "/" ) public @responsebody string index() { return "你好,这是第一个spring boot应用" ; } } |
修改app.java文件
1
2
3
4
5
6
7
8
9
10
11
|
package com.github.carter659.spring01; import org.springframework.boot.springapplication; import org.springframework.boot.autoconfigure.springbootapplication; @springbootapplication public class app { public static void main(string[] args) { springapplication.run(app. class , args); } } |
在app.java文件处,点击右键run as运行java程序
当控制台处显示运行结果后
在浏览器输入“http://localhost:8080/”网站访问第一个spring boot的应用
二、我们如何对spring boot做单元测试?
pom.xml中增加单元测试的依赖
1
2
3
4
5
|
<dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-test</artifactid> <scope>test</scope> </dependency> |
在src/test/java中新建测试类“httprequesttest.java”
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package com.github.carter659.spring01; import static org.assertj.core.api.assertions.assertthat; import org.junit.test; import org.junit.runner.runwith; import org.springframework.beans.factory.annotation.autowired; import org.springframework.boot.context.embedded.localserverport; import org.springframework.boot.test.context.springboottest; import org.springframework.boot.test.context.springboottest.webenvironment; import org.springframework.boot.test.web.client.testresttemplate; import org.springframework.test.context.junit4.springrunner; @runwith (springrunner. class ) @springboottest (webenvironment = webenvironment.random_port) public class httprequesttest { @localserverport private int port; @autowired private testresttemplate resttemplate; @test public void greetingshouldreturndefaultmessage() throws exception { assertthat( this .resttemplate.getforobject( "http://localhost:" + port + "/" , string. class )).contains( "你好,这是第一个spring boot应用" ); } } |
并运行单元测试
出现绿色表示断言成功
三、我们怎么部署spring boot?
我们会按照以下这几个步骤:
1.下载maven
在maven的官方网站下载maven的bin包:http://maven.apache.org/download.cgi
2.配置环境变量:
我这里是把maven解压到d盘的program files (x86)目录
在环境变量中输入:maven_home -->d:\program files (x86)\maven
path中追加:;%maven_home%\bin;
在cdm窗口中输入“mvn -v”命令来测试maven是否安装成功
这里显示的是3.3.9版本
3.打包
在程序所在目录(与pom.xml同级)输入“mvn package”命令:
出现“build success”则表示打包成功
会在tatget目录下出现打包后的jar文件
4.运行
在cmd中输入命令“java -jar target/spring01-0.0.1-snapshot.jar”
这时程序就部署好了,是不是发现spring boot程序不仅开发和测试非常简单,部署也非常容易?
代码下载:https://github.com/carter659/spring-boot-01.git
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支服务器之家。
原文链接:http://www.cnblogs.com/GoodHelper/p/6185498.html