搭建一个 简单的 spring boot 工程
程序员文章站
2022-05-17 08:28:44
...
这几天学习了spring boot的系统搭建, 总结一下这几天遇到的问题,记录下来作为备忘。
第一步: new project
第二步: 选择Spring Initializr
在此一步,我刚开始无法连接到start.spring.io ,无论选择default或者custom,最后找到需要设置一下代理,具体方式如下:
第三步:点击next ,然后改成你自己喜欢的名字
第四步,选择需要的插件
developer tools -》spring boot DevTools Web-->Spring Web 为了方便测试 选择 Template Engines-->Thymeleaf
第五步,起一个工程名,比如:springbootdemo
然后点击finish ,ok 项目建成了。
第六步,测试
1.新建一个Action ,
@Controller
public class IndexController {
@RequestMapping("/showIndex")
public String getIndex(Model model){
model.addAttribute("name", "thymeleaf");
return "index";
}
}
2.然后在 resources->templates中新建一个html,然后里面写着hello spring boot
<html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>index</title>
</head>
<body>
<h1>hello spring boot</h1>
<p th:text="hello spring boot"></p>
</body>
</html>
3.直接run这个工程,
@SpringBootApplication
public class SpringbootdemoApplication {
public static void main(String[] args) {
SpringApplication.run(SpringbootdemoApplication.class, args);
}
}
4.访问url http://localhost:8080/showIndex
推荐阅读
-
Maven工程搭建spring boot+spring mvc+JPA的示例
-
Spring Boot 工程的创建和运行(图文)
-
基于SpringBoot+WebSocket搭建一个简单的多人聊天系统
-
Spring Boot 2 - 初识与新工程的创建
-
从一个简单的例子看spring ApplicationContext上下文隔离
-
荐 使用IDEA搭建一个简单的JavaWeb图书管理项目(详细步骤指导、提供源码)
-
spring Boot环境下dubbo+zookeeper的一个基础讲解与示例
-
十、Spring boot 简单优雅的整合 Swagger2
-
Spring Boot2 系列教程 (二) | 第一个 SpringBoot 工程详解
-
Spring的学习一(Spring的介绍,搭建第一个Spring程序)