You can create a welcome.html with a redirect meta tag to /Inscripcion.do
Type: Posts; User: l.pasquinelli; Keyword(s):
You can create a welcome.html with a redirect meta tag to /Inscripcion.do
You are getting attribute from request scope but you set listener object in session scope.
You should do :
Object o = request.getSession().getAttribute("progress");
Also check...
Hi all,
I have a web-app configured with spring security which gets users and roles from an ldap tree.
I have a dn ou=User,dc=application for users and, for role, ou=Groups,dc=application .
...
Thanks for your support :)
It's correct but remember at the remote address can be the client address, or the last proxy that sent the request.
...
Ok i found the solution to my problem : i define the interceptor in one xml file, and the service in another, but i don't define in in the xml that contains service definition the following code (i...
You're right but at this phase i'm testing if the interceptor annotation works correctly using variuos configuration elements, i used your suggestion yesterday on first test.
Hi all,
yesterday i was migrating a simple application from spring 2.5.6 to spring 3.0 and i found a strange problem when i test a simple application interceptor.
This interceptor receive by...
Hi all,
I found a similar problem while I was testing aop function with jpa which use hibernate as engine for a mysql 5 database.
In my dao implementation i inject the entityManagerFactory, and...
I have the same problem and i found a possibile cause :
In my dao, i inject the entityManagerFactory and get the entityManager instance from this factory.
I change the injection with
...