Thanks for the reply.
Both routes work but for my needs I ended up creating a custom entry point.
Type: Posts; User: bkern; Keyword(s):
Thanks for the reply.
Both routes work but for my needs I ended up creating a custom entry point.
I want to get the request query string when a user hits the login page.
so if they went to /myapp/somewhere?param=value
they would end up at /myapp?param=value
right now spring security...
Thanks... I used a tasklet. I missed this when going through the documentation. It was exactly what I needed.
Hi,
What options do I have if I have one job that doesn't really fit reader/writer paradigm? I need to call a service and log the results but that is it. I don't deal with individual items in this...
thanks that worked great for me.
Hi
After looking here: http://static.springsource.org/spring/docs/2.5.x/reference/resources.html
I see this is possible in section 4.7.2 for loading applicationContext but is there anything I...
So I am running into some issues - I am not seeing my new bean being run.
do I want to create an init-method in this new bean where I do the checks or do I want to call another function from the...
here is the error message I was recieving:
INFO XmlConfigurationProvider:380 - Unable to verify action class [xxx] exists at initialization
xxx was the name of the action I was putting in...
I am trying to check dependencies are set during application startup. I have tried using @required and custom init methods but get an error message related to unable to verify .... exists at...
Hi,
If this is the wrong place to ask this question please let me know.
It is a spring question but I am using spring in a struts2 application.
I have been trying to implement some checks...