springboot项目引入freeMarker 404


pom引入依赖:

		
		
			org.springframework.boot
			spring-boot-starter-freemarker
		

新建文件夹如下:

springboot项目引入freeMarker 404_第1张图片

controller:

@Controller
public class TlfController {
	@RequestMapping("/tlfIndex")
	public String tlfIndex(HashMap hashMap) {
		hashMap.put("name", "ftl");
		return "index";
	}
}

注意:最开始引入依赖后一直报错404,重启之后就好了。

你可能感兴趣的:(springboot)