SpringBoot JavaWeb项目实现Html访问(原创转载请附上博文链接)

  1. 项目目录
    SpringBoot JavaWeb项目实现Html访问(原创转载请附上博文链接)_第1张图片
  2. 创建一个SpringBoot Web项目,在其基础上进行调整
  3. 这是我的pom.xml


    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        1.5.6.RELEASE
         
    
    com.example
    thymeleaf
    0.0.1-SNAPSHOT
    thymeleaf
    Demo project for Spring Boot

    
        1.8
    

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

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

        
        
            net.sourceforge.nekohtml
            nekohtml
            1.9.22
        

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

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    


  1. 我的application.yml配置
spring:
  thymeleaf:
    prefix: classpath:/templates/ # 不加,使用默认配置也行
    suffix: .html # 不加,使用默认配置也行
    content-type: text/html
    encoding: UTF-8
    cache: false # 开发环境关闭缓存
    mode: LEGACYHTML5 # 执行thymeleaf非严格html模式
  1. 创建Controller类
@Controller /*必须是Controller*/
public class TestController {

    @GetMapping("")
    public String test(){
        System.out.println("请求成功!!!");
        return "hello"; /* 默认访问templates下面的.html页面 */
    }

}
  1. 在templates下创建html页面hello.html



    
    Title


    

hello world !!!

请求成功!!

  1. 启动项目*Application
    访问 http://127.0.0.1:8080
    访问结果:
    SpringBoot JavaWeb项目实现Html访问(原创转载请附上博文链接)_第2张图片

你可能感兴趣的:(SpringBoot,JavaWeb)