1、
2、pom.xml 配置
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.22.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
3、启动类编写
@SpringBootApplication public class SpringRunApplication { public static void main(String[] args) throws UnknownHostException { SpringApplication.run(SpringRunApplication.class); } }