I've recently installed the struts2-spring plugin and everything seems to be working as expected from the Spring perspective; however, Struts actions now require an "input" result to be defined when there was not one before.
I have no idea why this is the case, but I would rather not go through my many actions defining dummy input results when they're not being used.
What I've verified:
- Spring context is being started up
- If there is an "input" result to the action, @Autowire is correctly autowiring the Spring beans into non-spring Actions.
What I think is the next clue, but I'm not sure why or where to go from here:
03:34:37,651 DEBUG
[org.apache.struts2.interceptor.validation.AnnotationValidationInterceptor] (http--0.0.0.0-8443-5) Validating //ftli with method execute.
^^ Is this line saying that the Action is being validated and then it's forwarding to "input" afterward?
Example Action where this fails:
${file}
I appreciate any suggestions or direction from here.