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);
}
}
该文章介绍了如何配置SpringBoot项目,包括在pom.xml中设置spring-boot-starter-parent依赖和spring-boot-starter-web模块,以及编写基本的启动类@SpringBootApplication,通过SpringApplication.run()启动应用。
6950

被折叠的 条评论
为什么被折叠?



