Spring boot的在eclipse中的使用步骤。求解。刚刚接触Spring boot无从下手 50
Springboot的在eclipse中的使用步骤。求解。刚刚接触Springboot无从下手如题。刚刚接触springboot无从下手啊。求大神指导...
Spring boot的在eclipse中的使用步骤。求解。刚刚接触Spring boot无从下手如题。刚刚接触spring boot无从下手啊。求大神指导
展开
3个回答
展开全部
官网上写的很清楚,给你一个基于 Maven 的配置方法。
Maven 项目要为 Spring boot 的子模块
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.6.RELEASE</version>
</parent>
2. 在 Maven 的依赖库中添加所需要的 Spring boot 模块与依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
3. 在 resources 目录中添加 application.properties, 比较全的配置请在官网上下载
debug=false
##---------------------------------------------------------------------------
## Server config
##---------------------------------------------------------------------------
server.port=80
server.context-path=/
server.tomcat.max-threads=10
##---------------------------------------------------------------------------
## http config
##---------------------------------------------------------------------------
spring.http.encoding.enabled=true
spring.http.encoding.charset=UTF-8
spring.http.encoding.force=true
4. 在 java 目录中添加一个启动类 Appliation.java
package net.goldnut.motor.activity;
import org.springframework.boot.Banner;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
@SpringBootApplication
public class Application {
public static void main(String[] args) {
new SpringApplicationBuilder().bannerMode(Banner.Mode.ON)
.sources(Application.class)
.run(args);
}
}
5.大体就以上的一些步骤,这里只是给出一些代码片段,如果你想要完整示例, 可以在 Github 上搜索一些开源项目。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询