springboot访问html文件

1 pom 文件修改


        org.springframework.boot
        spring-boot-starter-parent
        1.5.2.RELEASE
    
    
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.mybatis.spring.boot
            mybatis-spring-boot
            1.2.0
        
        
            mysql
            mysql-connector-java
        
        
            org.springframework.boot
            spring-boot-starter-data-jpa
        
        
            org.springframework.boot
            spring-boot-starter-thymeleaf
        

    

2 在resources\templates\hello.html




    Hello World!


Hello.v.2

  1. 在Controller中加入
@RequestMapping("/hello")
    public String helloHtml(HashMap map){
        map.put("hello","hello");
        return"/hello";
    }

你可能感兴趣的:(spring,boot)