To be able to retreive rows with lazy loading the session must still be active. That means it cannot leave the transaction manager. Either turn off lazy loading or do the operations in a service...
Type: Posts; User: jontro; Keyword(s):
To be able to retreive rows with lazy loading the session must still be active. That means it cannot leave the transaction manager. Either turn off lazy loading or do the operations in a service...
Hi,
What would be the best approach on handling version upgrades in a spring application when it comes to altering columns that has been added in between versions?
Im using jpa and the create...
Hi,
I am trying to use my custom PropertyEditorSupport editor as a converter of url variables to the correct object.
I have the following code
...
Hi all.
I am really new to spring so I would like some feedback regarding my implementation of custom PropertyEditorRegistrars.
I realize that DI is the way to go and I really had to think a...
How about rolling your own implementation of AuthenticationProvider ?
You can still use daoAuthenticationProvider and do your own implementation of UserDetailsService and UserDetails to accomplish this.
This is how I did the configuration in applicationContext.xml:...