使用STS创建第一个SpringBoot
2021-04-29 15:29
标签:too 简化 一个 j2ee 监控 嵌入 ons chm 运行时 Spring-tool-suite的下载:https://spring.io/tools SpringBoot是整个Spring技术栈的整合,来简化Spring应用开发,约定大于配置,去繁从简,just run 就能创建一个独立的,产品级别的应用。 解决: "Spring全家桶"时代。 使用Spring开发的缺点: SpringBoot的优点: 1、新建spring starter project 2、填写项目名,GAV 3、添加 starters自动依赖与版本控制 4、finish,创建成功,下载需要的依赖(等待) 5、创建一个测试类 6、启动springboot 7、访问http://localhost:8080/hello 使用STS创建第一个SpringBoot 标签:too 简化 一个 j2ee 监控 嵌入 ons chm 运行时 原文地址:https://www.cnblogs.com/64Byte/p/13232566.htmlSpringBoot简介
新建一个SpringBoot项目--helloword
@Controller
public class controller {
@RequestMapping("hello")
@ResponseBody
public String helloTest() {
return "你好世界啊";
}
}
@SpringBootApplication
public class SpringBootDemo1Application {
public static void main(String[] args) {
SpringApplication.run(SpringBootDemo1Application.class, args);
}
上一篇:Python文档管理与格式化工具
下一篇:js async04
文章标题:使用STS创建第一个SpringBoot
文章链接:http://soscw.com/index.php/essay/80147.html