欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

搭建一个 简单的 spring boot 工程

程序员文章站 2022-05-17 08:28:44
...

这几天学习了spring boot的系统搭建, 总结一下这几天遇到的问题,记录下来作为备忘。

第一步: new project

搭建一个 简单的 spring boot 工程

第二步: 选择Spring Initializr

搭建一个 简单的 spring boot 工程

在此一步,我刚开始无法连接到start.spring.io ,无论选择default或者custom,最后找到需要设置一下代理,具体方式如下: 

搭建一个 简单的 spring boot 工程

 

第三步:点击next ,然后改成你自己喜欢的名字

搭建一个 简单的 spring boot 工程

 第四步,选择需要的插件

developer tools -》spring boot DevTools    Web-->Spring Web  为了方便测试  选择 Template Engines-->Thymeleaf 

搭建一个 简单的 spring boot 工程

第五步,起一个工程名,比如:springbootdemo

 

搭建一个 简单的 spring boot 工程

 

然后点击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

 

 

搭建一个 简单的 spring boot 工程