我目前正在运行一个有效的Spring + Apache Tiles webapp。 我需要展示一些示例代码来解释我的意图。
Apache Tiles配置:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE tiles-definitions PUBLIC
"-//Apache Software Foundation//DTD Tiles Configuration 2.1//EN"
"http://tiles.apache.org/dtds/tiles-config_2_1.dtd">
<tiles-definitions>
<definition name="baseLayout" template="/WEB-INF/layouts/www_base.jsp" />
<definition name="home" extends="baseLayout">
<put-attribute name="body" value="/WEB-INF/views/home.jsp" />
</definition>
</tiles-definitions>
示例控制器:
@Controller
public class ExampleController {
@RequestMapping("/index.html")
public String index(Map<String, Object> map) {
map.put("hello", "world");
return "home";
}
}
这会显示www_base.jsp
home.jsp
为body
。我可以在${hello}
以及www_base.jsp
中使用变量home.jsp
。
但我不想在每个Controller方法中设置hello
,以便能够在每页的www_base.jsp
中使用它。
有没有办法为www_base.jsp
设置全局变量,例如在ExampleController
的构造函数中?
更新 使用Map的示例代码
@Controller
@RequestMapping("/")
public class BlogController {
@ModelAttribute
public void addGlobalAttr( Map<String, Object> map ) {
map.put("fooone", "foo1");
}
@RequestMapping("/index.html")
public String posts(Map<String, Object> map) {
map.put("foothree", "foo3");
return "posts";
}
}
答案 0 :(得分:2)
使用method annotated with @ModelAttribute:
方法上的@ModelAttribute指示该方法的用途 添加一个或多个模型属性。这些方法支持相同的方法 参数类型为@RequestMapping方法但无法映射 直接请求。而是控制器中的@ModelAttribute方法 在@RequestMapping方法之前调用,在同一个方法中 控制器。
@ModelAttribute方法用于通常填充模型 需要的属性,例如用状态或填充下拉列表 宠物类型,或者为了检索像Account这样的命令对象 用它来表示HTML表单上的数据。