Posts by Ice-Man • 71 points
5 posts
-
3
votes1
answer115
viewsA: Problems with Opensessioninviewer + JPA + Tomcat standard
The problem is, if you put the Producer of EntityManager as @RequestScoped, it just instantiated and injected into instances dependencies that have just this same scope. And as the Job/Task of your…
-
1
votes1
answer153
viewsA: Manage or customize user session in Spring-managed Javase app
Some time ago I came up with a reasonable solution, at some extent. I publish now because I think it might be useful for someone else. (Note: the Solution was implemented using Springsecurity3.2.x…
-
1
votes1
answer1834
viewsA: how to rescue a data list and view in jsp
@Mattos (it was last year, but still useful case!) I implemented/implanted its application in netBeans8/Tomcat8, with small adjustments and worked perfectly: I created an index.jsp (at the root of…
-
1
votes1
answer111
viewsA: Difficulty to view data in a Vraptor web project
Apparently you forgot to import the JSTL tag lib this way: <%@ taglib prefix="c"% uri="http://java.sun.com/jsp/jstl/core"> <%@ taglib prefix="fmt"%…
-
1
votes1
answer153
viewsQ: Manage or customize user session in Spring-managed Javase app
I would like to know how to manage or customize the user session in the Javase application (GUI / Desktop / SWING / thinClient) managed by Springsecurity?! For example, how could I set up Timeout in…