解决Error resolving template template might not exist or might not be accessible问题

解决方案:

我的目录结构:

解决Error resolving template template might not exist or might not be accessible问题_第1张图片

1.查看application.yml文件对于页面模板的配置,在resources下面创建templates文件夹,页面放于里面。

spring:
  datasource:
    url: jdbc:mysql://localhost:3306/shiro?useUnicode=true&characterEncoding=utf8&serverTimezone=UTC
    username: root
    password: 123456
    driver-class-name: com.mysql.jdbc.Driver

  jpa:
    database: mysql
    show-sql: true
    hibernate:
      ddl-auto: update
      naming:
        strategy: org.hibernate.cfg.DefaultComponentSafeNamingStrategy
    properties:
      hibernate:
        dialect: org.hibernate.dialect.MySQL5Dialect

  thymeleaf:
    cache: false
    mode: LEGACYHTML5
    prefix: classpath:/templates/
    suffix: .html

2.controller;里面直接返回“index”即可。

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;

@Controller
public class IndexController {

    @GetMapping("/index")
    public String index(){
        return "index";
    }
}

 

你可能感兴趣的:(springboot,thymeleaf)