目前,我正在做一个小项目,其中我需要使用springboot和freemarker模板引擎。我尝试了不同的方法,但我仍然不能返回一个从 Spring 启动免费标记视图。我的项目使用gradle作为构建工具,下面是其中的内容: build.gradle:
```
plugins {
id 'org.springframework.boot' version '2.3.3.RELEASE'
id 'java'
}
apply plugin: 'io.spring.dependency-management'
sourceCompatibility = 11
repositories {
mavenCentral()
}
sourceSets.main.resources.srcDirs = ["src/resources"]
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
compile("org.springframework.boot:spring-boot-starter-web")
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'org.springframework.boot:spring-boot-starter-freemarker'
}
这是我的方法,我希望用一个列表重定向到freemarker视图,相反,当我向这个url发送get请求时,我只得到 `index` “显示的字符串:
@GetMapping(path = "/code/latest")
public String getTop10LatestCode(@ModelAttribute("model") ModelMap model) {
model.addAttribute("codes", codes.subList(Math.max(0, codes.size() - 10), Math.max(codes.size() - 1, 0)));
return "index";
}
这是我的 `application.properties` 文件:
server.port=8889
management.endpoints.web.exposure.include=*
management.endpoint.shutdown.enabled=true
spring.freemarker.template-loader-path=classpath:/templates/
spring.freemarker.suffix=.ftlh
我的freemarker视图已经在 `templates` 文件夹中的 `resources` 文件夹。
以下是我的项目结构:
![](https://i.stack.imgur.com/Jypf7.png)
任何帮助都将不胜感激,谢谢。
1条答案
按热度按时间mctunoxg1#
我已经弄明白了,我的课是用
@RestController
注解,它本身是@Controller
以及@ResponseBody
注解,因为我的类中的每个方法都会返回一个响应主体,即使是我在这里发布的那个,这就是为什么它返回主体,因此返回index
. 我需要换衣服@RestController
至@Controller
问题解决了。