Struts 2 Convention Plugin Define Multiple Parent Packages

前端 未结 2 627
无人共我
无人共我 2021-01-23 17:53

I\'m working on Struts 2 web application, using the Convention Plugin to configure everything via annotations. I\'m hitting a snag with some of my action classes, where I\'d lik

相关标签:
2条回答
  • 2021-01-23 18:07

    I checked org.apache.struts2.convention.annotation.ParentPackage for you, it is not allowed to define multi-parent-package. here is the snippet:

    @Target({ElementType.TYPE, ElementType.PACKAGE})
    @Retention(value = RetentionPolicy.RUNTIME)
    public @interface ParentPackage {
        /**
         * @return  The parent package.
         */
        String value();
    }
    
    0 讨论(0)
  • 2021-01-23 18:25

    You cannot do it with annotations, but it's still possible via XML config. The javadoc says

    This annotation allows actions to modify the parent package that they are using. Since XWork packages are created by the Convention plugin via the Java packages that the actions exist in, there is some tricky handling of XWork parent packages and namespaces of the XWork packages for discovered actions so that two actions in the same package can specify different parents and namespaces without collision.

    In order to handle this correctly, the name of the XWork package that actions are placed into is built using this format:

    <java-package>#<parent-xwork-package>#<namespace>

    This means that is possible to have multiple parent packages in the java package. But you cannot place two or more @ParentPackage annotations on the same class or package. And as you notices cannot have array for parent packages. But you can at least have two parent packages one at the package definition and other at the action class. And unfortunate the config builder builds two configs for this annotations but the action config is only created for the one that has an annotation.

    0 讨论(0)
提交回复
热议问题