springboot整合freemarker,页面跳不过去404


	4.0.0
	com.dahua.boot
	hello
	0.0.1-SNAPSHOT
	
	
		org.springframework.boot
		spring-boot-starter-parent
		2.0.5.RELEASE
	
	
	
		
		
		
			org.springframework.boot
			spring-boot-starter-web
		
		
		
			org.springframework.boot
			spring-boot-starter-freemarker
		


	

上面的是pom.xml的导入的依赖

下面贴出代码


package com.dahua.boot.controller;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.ModelAndView;

@Controller
public class IndexController {
	
	@RequestMapping("/first")
	public String indexController(Map result) {
		System.out.println("IndexController....index");
		result.put("name", "haha");
		result.put("sex", 1);
		List list = new ArrayList();
		list.add("zhangsan");
		list.add("lisi");
		result.put("userlist", list);
		return "index";
	}
	
	@RequestMapping("/second")
	@ResponseBody
	public String get() {
		return "haha";
	}
	
}

还有一个index.ftl页面

this is itmayiedu 
${name} <#if sex==1> 男 <#elseif sex==2> 女 <#else> 其他 <#list userlist as user> ${user}

访问first,springboot整合freemarker,页面跳不过去404_第1张图片

然后访问second,页面可以刷到字符串,但是为什么访问first 页面跳不过去?springboot整合freemarker,页面跳不过去404_第2张图片

你可能感兴趣的:(springboot整合freemarker,页面跳不过去404)