赞
踩
专业版:直接使用即可
社区版:需要去额外安装【Spring Boot helper】插件,不能直接选installed,因为该插件要收费(有钱另说)
关于Spring Boot的版本问题:
参数选择
3. 项目启动的日志:
//路径为【127.0.0.1:8080/sayhi】
@RestController
public class HelloController {
@RequestMapping("/sayhi")
public String sayHi(){
return "hello";
}
}
<!-- 默认引入的test的包,test是测试的框架 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
对于一个项目到底是那种类型,并不是那种“三选一”,有明显边界的关系,而是“即是……也是……”的关系
<!-- Spring MVC 项目的依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。