struts2 - Tiles 与 Struts 2 注释集成

标签 struts2 annotations tiles tiles2

我一直在尝试将 Tiles 与基于 Struts 2 注释的操作集成,但它无法正常工作。

由于我没有 struts-config.xml,并且在网络上提供的每个教程中,他们都使用 struts-config.xml 引用它。

首先,可以将基于注释的 struts 操作与图 block 集成。如果是的话怎么办?

@Action(value="/login",results={@Result(name="success",location="/home",type=TilesResult.class),
            @Result(name="login",location="/jsp/userLogin.jsp")})
    public String execute() {

这就是我的代码,但它总是在 MyEclipse 的 TilesResult.class 中给我错误

Type mismatch: cannot convert from Class<TilesResult> to String

我的 pom 中有依赖项:

<dependency>
    <groupId>org.apache.struts</groupId>
    <artifactId>struts2-tiles-plugin</artifactId>
    <version>2.1.8</version>
</dependency>

任何人都可以帮助我如何在基于注释的操作中添加图 block


我使用了 type="tiles" 而不是 type=TilesResult.class 然后它给了我以下异常

Caused by: The Result type [tiles] which is defined in the Result annotation on the class [class com.actions.LoginAction] or determined by the file extension or is the default result type for the PackageConfig of the action, could not be found as a result-type defined for the Struts/XWork package [com.actions#convention-default#] - [unknown location]
    at org.apache.struts2.convention.DefaultResultMapBuilder.createResultConfig(DefaultResultMapBuilder.java:422)
    at org.apache.struts2.convention.DefaultResultMapBuilder.createFromAnnotations(DefaultResultMapBuilder.java:394)
    at org.apache.struts2.convention.DefaultResultMapBuilder.build(DefaultResultMapBuilder.java:202)
    at org.apache.struts2.convention.PackageBasedActionConfigBuilder.createActionConfig(PackageBasedActionConfigBuilder.java:800)
    at org.apache.struts2.convention.PackageBasedActionConfigBuilder.buildConfiguration(PackageBasedActionConfigBuilder.java:586)
    at org.apache.struts2.convention.PackageBasedActionConfigBuilder.buildActionConfigs(PackageBasedActionConfigBuilder.java:318)
    at org.apache.struts2.convention.ClasspathPackageProvider.loadPackages(ClasspathPackageProvider.java:53)
    at com.opensymphony.xwork2.config.impl.DefaultConfiguration.reloadContainer(DefaultConfiguration.java:204)
    at com.opensymphony.xwork2.config.ConfigurationManager.getConfiguration(ConfigurationManager.java:55)

最佳答案

尝试这些:

  1. 使用type="tiles"而不是type="TilesResult.class"

  2. 使用您的目标图 block 定义,location="tiles-definition-name" ,而不是 JSP 页面,location="/jsp/userLogin.jsp" ,在您的结果位置

  3. 在您的web.xml中有以下内容:

    <context-param> <param-name>org.apache.tiles.impl.BasicTilesContainer.DEFINITIONS_CONFIG</param-name> <param-value>/WEB-INF/tiles.xml</param-value> </context-param> <listener> <listener-class>org.apache.struts2.tiles.StrutsTilesListener</listener-class> </listener>

  4. 在您的struts.xml中有以下内容(如果您单独使用注释并且没有 struts.xml ,那么您必须为此创建一个最小注释,因为没有可用于定义自定义结果类型的注释)

    <struts> <constant name="struts.convention.default.parent.package" value="codeoftheday.blogspot.com"/> <package name="codeoftheday.blogspot.com" extends="struts-default"> <result-types> <result-type name="tiles" class="org.apache.struts2.views.tiles.TilesResult" /> </result-types> </package> </struts>

注意:我已经就此问题撰写了一篇详细的博客文章 - Maven, Struts2 Annotations and Tiles Integration Example via Convention / Codebehind / Zero Config plugin using Eclipse IDE

关于struts2 - Tiles 与 Struts 2 注释集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17767895/

相关文章:

java - Hibernate注解: Two relation types between two entities?

java - 为什么 Hibernate 会忽略 package-info.java?

java - 为什么我们不应该同时使用 jspViewResolver 和 TilesViewResolver 呢?

java - 如何重命名 Struts 2 token 参数

java - 使用 struts 2 表单标签编辑对象的 ArrayList

java - 如何在Struts迭代器标签中添加条件?

java - Hibernate用null更新子实体并且不删除,如何强制它?

python - 如何在 pygame 中导入 tmx map ?

css - 如何创建网格/平铺 View ?

jsp - 如何拥有 <s :if> with two conditions in Struts 2