在测试学习SpringMVC设计模式的时候偶尔发现了我的后台无法传值到jsp页面中的问题。找了一晚上没找到是什么原因,后来在其他人的博客中找到了解决方法,在这里顺便记录一下。
spring的后台代码
@Controller
@RequestMapping("/test")
public class PersonController {
private PersonService personService;
@Autowired
public void setPersonService(PersonService personService) {
this.personService = personService;
}
@RequestMapping(value = "/person", method = RequestMethod.GET)
public String viewPerson(@RequestParam("num") Integer num, Model model){
System.out.print(num + "\n");
Person person = personService.getPerson();
model.addAttribute("person", person);
return "TestCourseId";
}
}
jsp页面测试代码
<%@ page language="java"
contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>测试CourseId参数接收和course参数输出</title>
</head>
<body>
<h1>测试Course参数输出</h1>
<p>person-age</p><${person.age}><br>
</body>
</html>
没修改时的结果是无法正常输出的
Paste_Image.png在jsp页面中添加下面这行代码就可以了
<%@ page isELIgnored="false" %>
Paste_Image.png
默认EL的忽略是true的,所以EL是没法使用的。
希望能帮助到后人。
网友评论