Change Action Method In Interceptor

2015-03-11 Thread R Veach
Hi, I know it is possible to limit struts to specific methods using the MethodFilterInterceptor, and to change the execute method in the config or form declaration using the method attribute. Is it possible to have an interceptor change which method would be executed in the action? I see I can

Re: Change Action Method In Interceptor

2015-03-11 Thread Lukasz Lenart
2015-03-11 16:29 GMT+01:00 R Veach rveac...@gmail.com: Hi, I know it is possible to limit struts to specific methods using the MethodFilterInterceptor, and to change the execute method in the config or form declaration using the method attribute. Is it possible to have an interceptor change

RE: Struts 1.x documentation and javadocs

2015-03-11 Thread Martin Gainty
mkdir /EmptyFolder cd /EmptyFolder wget -r http://www.laconiadatasystems.com/struts-1.3.8/docs/ Please do this today before my host provider finds out I uploaded at least 2 gb of apache stuff to the site ping back if you have any questions, Martin __

Unable to find keys located in .properties file

2015-03-11 Thread Jeanderson
Hi everyone, I am a beginner in Struts 2 and so far, I've been working with the official tutorials to get started with the framework. Also, I'm using Eclipse. In the Message Resource Files [1], the framework can't find the key located in the .properties file although it is placed in the same

Re: Unable to find keys located in .properties file

2015-03-11 Thread Jeanderson
Hello Lukasz Lenart, Thank you for your message. I imagined that working with a directory tree generated by Eclipse could be a problem. I started a new project based on Maven [1], however, if you run my code, you will get again a warning: 2015-03-11 17:48:00,316 WARN

Re: Unable to find keys located in .properties file

2015-03-11 Thread Lukasz Lenart
2015-03-11 18:09 GMT+01:00 Jeanderson jeanderso...@gmail.com: Hi everyone, I am a beginner in Struts 2 and so far, I've been working with the official tutorials to get started with the framework. Also, I'm using Eclipse. In the Message Resource Files [1], the framework can't find the key

Struts 1.x documentation and javadocs

2015-03-11 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 All, I realize that S1 is EOL but the press release says that the documentation will still be available from the Struts home page. I can't seem to find the 1.3.x API Javadocs on the site, and neither can Google. Are the Javadocs still available

Re: Struts 1.x documentation and javadocs

2015-03-11 Thread Lukasz Lenart
Yes, only as a downloadable versions, this allowed to simplify results in Google index 2015-03-11 12:23 GMT+01:00 Christopher Schultz ch...@christopherschultz.net: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 All, I realize that S1 is EOL but the press release says that the

Re: Unable to find keys located in .properties file

2015-03-11 Thread Lukasz Lenart
Almost gut your action is in: src/main/java/lab_struts/tutorial/message_resource/action but the related properties file in: src/main/resources/lab_struts/tutorial/message_resource/ so they differ on the last part - action and that's why message cannot be found. You have two options here: -