开发环境
本次教程的编写环境:
操作系统:
Mac OS X 10.12.4
操作系统
ide:
IntelliJ IDEA 2017.1.1
Build #IU-171.4073.35, built on April 7, 2017
JRE:
1.8.0_112-release-736-b16 x86_64
JVM:
OpenJDK 64-Bit Server VM by JetBrains s.r.o
准备工作
将以下代码加入idea的live template,命名为springbootStartup
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.2.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<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>
Create New Project
Create New Project - 1 Create New Project - 2 Create New Project - 3 Create New Project - 4 Create New Project - 5 Create New Project - 6添加maven支持
添加pom.xml
在project的根目录上的右键菜单中选择"Add Framework Support",添加maven支持。
添加maven支持 - 1 添加maven支持 - 2 添加maven支持 - 3设置maven坐标
添加maven支持 - 4补全maven其他设置
在pom.xml中,坐标设置下面输入sp,IDE自动弹出前面设置的live template:“springbootStartup”,按下"tab"键盘,剩余的maven代码将会自动补全。
添加maven支持 - 5 添加maven支持 - 6
新建包结构
新建包结构新建application类
新建application类 - 1 新建application类 - 2 新建application类 - 3 新建application类 - 4 新建application类 - 5在main函数中添加如下代码:
SpringApplication.run(SpringBootDemoApplication.class, args);
添加controller类
添加controller类 - 1添加@RestController
添加controller类 - 2添加request mapping代码
@RequestMapping("/hello")
String hello() {
return "this is a test";
}
添加controller类 - 3
测试
测试 - 1第一次启动报错,显示8080端口已经被占用
测试 - 2因此需要修改端口号,操作如下:
在resources目录下新建application.properties, 输入如下内容:
server.port=8081
然后重新启动程序,在浏览器中访问地址:
http://localhost:8081/hello
网友评论