rt.
application.properties:
spring.freemarker.template-loader-path=classpath:/templates/
resources/templates 下面有个showAdd.ftl ,里面有一表单
然后启动类里面,请求处理方法:
/**
* 展示表单页面
* @return
*/
@RequestMapping("/showAddPage")
String showAddPage(){
return "showAdd";
}
运行起来前端展示的是“showAdd”这个字符串,没见表单
freemarker的starter依赖已添加。
springboot的启动类被
@RestController
@EnableAutoConfiguration
@SpringBootApplication
注解