当前位置: 首页 > 知识库问答 >
问题:

在Spring Boot上解析deploy jar或war上的模板时出错

芮建茗
2023-03-14

但是当我在其他服务器或容器上部署jar或war时,一些url上的服务器给我错误:错误解决模板"/shop/index",模板可能不存在或可能无法访问任何配置的模板解析程序

这是我的申请表。yml:

    server:
  port: 8080
logging:
    level:
        com.mousavi007.shop: debug
spring:
  datasource:
    url: jdbc:mysql://localhost:3306/shop2
    username: *******
    password: *******
    platform: mysql
  jpa:
    hibernate:
      ddl-auto: update
    database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
    database: mysql
    show-sql: true
  thymeleaf:
      mode: LEGACYHTML5

商店管理员:

@Slf4j
@Controller
@RequestMapping("/shop")
public class ShopController {

@GetMapping({"","/"})
    public String Shop(Model model, @RequestParam("pageSize") Optional<Integer> pageSize,
                       @RequestParam("page") Optional<Integer> page){
**** 
****
****
****
            return "/shop/index";
}
}

共有1个答案

司徒翼
2023-03-14

改变

return "/shop/index";

return "shop/index";
 类似资料: