快速构建springboot项目

最近在试着自己动手搭建springboot, 也看了别人的博客, 不过感觉没太懂, 现在把自己搭建成功的过程记录一下

使用 idea, jdk8, maven

1. file -> New -> project

快速构建springboot项目_第1张图片

2. next -> 键入项目名, 包名

快速构建springboot项目_第2张图片

3. 如果是web项目, 勾选Web -> Web

   如果需要页面, 勾选Template Engines -> Thymeleaf, 

  这一步是自动往pom中加依赖, 不用自己再去加了, 当然你喜欢的话也可以自己加

快速构建springboot项目_第3张图片   快速构建springboot项目_第4张图片

4.finish 保存

完成后可以看到目录如下

快速构建springboot项目_第5张图片快速构建springboot项目_第6张图片

5.在 application.properties加入如下代码

#视图层控制
spring.mvc.view.prefix=classpath:/templates/
spring.mvc.view.suffix=.html
spring.mvc.static-path-pattern=/static/**
6.添加controller: demo下建controller包, 创建URLController, 代码如下:
@Controller
@RequestMapping("/page")
public class URLController {

    @RequestMapping("/index")
    public String index(){

        return "/index";
    }
}

7. template下创建index.html, 如下




    
    Title


  如果你看到这个, 那就成功进入首页了

此时可以看到目录如下:

快速构建springboot项目_第7张图片

8. 运行DemoApplication, (如果不行, 试试maven clean再package)

浏览器访问localhost:8080/page/index, 如下

快速构建springboot项目_第8张图片

9. 如果出现这个,  首先检查页面路径是否正确,

o.s.web.servlet.PageNotFound             : No mapping found for HTTP request with URI [/page/inde] in DispatcherServlet with name 'dispatcherServlet'

如果正确, 检查pom依赖, 是否有thymeleaf


        
            org.springframework.boot
            spring-boot-starter-thymeleaf
        
        
            org.springframework.boot
            spring-boot-starter-web
        

        
            org.springframework.boot
            spring-boot-starter-test
            test
        
 

结束.

写在最后, 搭建过程可能不这么顺畅, 我也是试了好多次才试出来的~, 就是因为无法访问页面, 自己找不到原因

 

希望自己每天写一点东西, 哪怕很简单也好 ~

你可能感兴趣的:(spring)