我希望Tiles从struts2值栈中解析ognl。怎么做?
使用磁贴2.2.2(尽管如果可以使用3之类的更高版本)
这里提到了新功能: http://tiles.apache.org/2.2/framework/whats-new.html
此处显示了如何实施它:http://tiles.apache.org/2.2/framework/tutorial/advanced/el-support.html#OGNL_Support
但我不确定如何在我的项目中解决这个问题。有没有人在他们的struts2项目中使用tiles3?我记得在默认情况下阅读有关打开磁贴3中所有新功能的某些方法,但我找不到该页面的链接。
如果配置完全可以使用弹簧很好(如果这有帮助,如果不是,则不是问题)。
答案 0 :(得分:3)
我喜欢tile tempate系统,因为它简单直接,使用Tiles 2.2.2你可以通过支持将struts2惯例直接推送到模板系统中,现在还有 OGNL !
在tile中添加了具有OGNL支持的tile 2.2.2的步骤(目前使用Struts 2.3.1.2):
1)添加struts2-tiles-plugin
2)添加瓷砖2.2.2罐子,包括添加ognl支持的罐子。假设maven:所有组ID都是: org.apache.tiles 所有版本都是 2.2.2 ,以下是工件ID:
还需要添加以下内容:
log4j,log4j,1.2.14(应该已经是基本设置的一部分:http://struts.apache.org/2.x/docs/create-struts-2-web-application-using-maven-to-manage-artifacts-and-to-build-the-application.html)
slf4j-api,org.slf4j,1.6.4
通过使用org.apache.tiles.extras.complete.CompleteAutoloadTilesListener,您可以在tiles.xml中获得Wild Cards,EL,OGNL,MVEL支持
示例web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<listener>
<listener-class>org.apache.tiles.extras.complete.CompleteAutoloadTilesListener</listener-class>
</listener>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
演示的struts.xml :该演示使用来自struts的OGNL来显示硬编码的问候消息。存在三个动作映射“”,“test”和“package / *”,斜杠后面的值将由tile用于设置新标题。一个非常简单的例子,但确实显示了一些有用的功能。
<struts>
<constant name="struts.devMode" value="true" />
<constant name="struts.ui.theme" value="simple" />
<constant name="struts.enable.SlashesInActionNames" value="true" />
<constant name="struts.mapper.alwaysSelectFullNamespace" value="false"/>
<package name="basicstruts2" namespace="" extends="tiles-default">
<result-types>
<result-type name="tiles" default="true" class="org.apache.struts2.views.tiles.TilesResult"/>
</result-types>
<action name="/**" class="com.kenmcwilliams.tiles.action.Test">
<result>{1}</result>
</action>
</package>
</struts>
<强> tiles.xml 强>
<?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/content/tiles/template.jsp">
<put-attribute name="title" value="Default Title"/>
<put-attribute name="header" value="/WEB-INF/content/tiles/header.jsp"/>
<put-attribute name="body" value="/WEB-INF/content/tiles/body.jsp"/>
<put-attribute name="footer" value="/WEB-INF/content/tiles/footer.jsp"/>
<put-attribute name="variable" expression="OGNL:greeting"/>
</definition>
<definition name="test" extends="baseLayout">
<put-attribute name="title" value="Test Title"/>
</definition>
<definition name="WILDCARD:package/*" extends="baseLayout">
<put-attribute name="title" value="{1}" type="string"/>
</definition>
<definition name="" extends="baseLayout">
</definition>
</tiles-definitions>
<强> /WEB-INF/content/tiles/body.jsp 强>
<div>
This is the default body.
</div>
<强> /WEB-INF/content/tiles/footer.jsp 强>
<div>
This is the default footer.
</div>
<强> /WEB-INF/content/tiles/header.jsp 强>
<div>
This is the default header.
</div>
<强> /WEB-INF/content/tiles/template.jsp 强>
<%@taglib prefix="tiles" uri="http://tiles.apache.org/tags-tiles" %>
<%@taglib prefix="s" uri="/struts-tags"%>
<%@page contentType="text/html" pageEncoding="UTF-8" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><tiles:insertAttribute name="title"/></title>
</head>
<body>
<tiles:insertAttribute name="header"/>
<tiles:insertAttribute name="body"/>
<tiles:insertAttribute name="footer"/>
<tiles:insertAttribute name="variable"/>
</body>
</html>
Test.java行动
package com.kenmcwilliams.tiles.action;
import com.opensymphony.xwork2.ActionSupport;
import java.util.Map;
import java.util.logging.Logger;
import org.apache.struts2.interceptor.SessionAware;
public class Test extends ActionSupport implements SessionAware{
private static final Logger log = Logger.getLogger(Test.class.getName());
@Override
public String execute(){
log.info("Test execute");
return SUCCESS;
}
private String greeting = "Hello, World from Action!";
public String getGreeting(){
return greeting;
}
@Override
public void setSession(Map<String, Object> session) {
session.put("greeting", "Greetings from session!");
}
}
现在应该足以让瓷砖适合您的应用。