The idea is to minimize the amount of data that gets replicated as part of the session. In my system, most of the time, a single app server will handle a given session throughout the lifetime of...
Type: Posts; User: jfrank; Keyword(s):
The idea is to minimize the amount of data that gets replicated as part of the session. In my system, most of the time, a single app server will handle a given session throughout the lifetime of...
I'm trying to use replicated sessions in a database, which means I want to keep session data small (always a good idea anyway of course) and it has to be serializable. I'm using Spring Security,...
Old thread, but I stumbled upon it today while researching failover strategies. The notion of the failover being built into the connection pooler sounded pretty good, so I wanted to try it out. I...
OK that makes sense -- it doesn't really matter if getPreAuthenticatedPrincipal is called each time, because it is supposed to be a lightweight method to get the identifier of the person to be...
Thanks for the reply, and the tip about Spring Social. Not sure I have the appetite to learn a new Spring project, but it may be better than me monkeying around with Spring Security without being...
I'm integrating Facebook logins to my web app. After some research, I've decided to try to use a subclass of the AbstractPreAuthenticatedProcessingFilter to do this. In my subclass, I made an...
I realize this is an old thread, but I recently came across this issue in a new project where I was moving away from the HibernateDaoSupport superclass and the associated getHibernateTemplate()...
I have solved my issue, simply by changing my xsi:schemaLocation attribute. Before fixing it, the schemaLocation element was pointing to
...
Is there a way to get the older XSD, for milestone 6? I have not upgraded to RC1 and now my configuration XML is invalid, since it points to the upgraded XSD at...
I am new to Spring Integration and I'm trying to figure out how the error handling works. I have a service method to perform a chunk of work, and this service method can throw an exception. I use a...
I'm upgrading a project from Spring 2.0 to 2.5, and I am playing with the new annotation-driven controller stuff. I do like how it cuts down on all my controller bean configuration in XML, but I am...
Now that EhCache supports multiple CacheManagers, I am wondering how to ensure that I use the same one for Hibernate as for my other caching needs.
I am using "declarative caching" via Spring...
I've seen lots of postings here about confusion for when a particular advisor will apply to a given bean or method. (Note: I'm relatively new to AOP and probably will use some terms incorrectly.) I...
I have a method that loops through a list of objects and updates each one in the database (each object represents a single row, with no relations to other tables). I would like this to be as...
Well I just wrote a lengthy post about this but I guess I took too long to write it, because when I hit Sumbit Reply it asked me to log in again, and then of course my posting was lost. This was a...
I was having a similar problem, not so much to do with Eclipse not recognizing the methods, but they were never invoked when my wizard was being used.
After I had given up and reworked my code to...