yahibo
2018-06-25 17:23
@Controller
@RequestMapping("ftl")
public class IndexController {
@Autowired
private Resource resource;
@RequestMapping("/index")
public String index(ModelMap map) {
map.addAttribute("resource", resource);
return "index";
}
}
freemarker 模板报错
Description: Field resource in com.hibo.controller.IndexController required a bean of type 'org.springframework.core.io.Resource' that could not be found.
Action: Consider defining a bean of type 'org.springframework.core.io.Resource' in your configuration.
我也是这个错误,这个你怎么解决的
问题解决
SpringBoot开发常用技术整合
102171 学习 · 508 问题
相似问题