加了<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>后resource下面没有templastes包
时间: 2023-07-09 15:18:44 浏览: 95
ip2region-spring-boot-starter:spring-boot-starter-ip2region
这是因为在Spring Boot中,如果没有在application.properties或application.yml文件中进行配置,它默认会在classpath:/templates/下查找模板文件。如果你想使用模板引擎,可以在resource目录下手动创建templates目录,并将模板文件放在该目录下即可。另外,如果你想更改默认的模板文件位置,可以在配置文件中添加如下配置:
```
spring:
thymeleaf:
prefix: classpath:/templates/
```
这里以thymeleaf模板引擎为例进行说明。如果你使用的是其他的模板引擎,可以参考对应的配置方式。
阅读全文