vote up 0 vote down star

I need to access the struts.action.extension value in the struts.xml file from an interceptor. Any suggestions?

flag

1 Answer

vote up 0 vote down check

Thanks to Musachy Barroso over on the Struts User list I added the following to my interceptor:

/**
 * @param strutsActionExtension the strutsActionExtension to set
 */
@Inject(StrutsConstants.STRUTS_ACTION_EXTENSION) //Note this isn't necessarily supported
public void setStrutsActionExtension(String strutsActionExtension) {
    this.strutsActionExtension = strutsActionExtension;
}

as Wes Wannemacher notes on the same list this in't actually supported but is extremely unlikely to change in future releases.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.