Hi Oliver,
Has any further investigation been made into this issue? I came across it yesterday and have had a identical experience to the other guys here.
This problem is consistent but it...
Type: Posts; User: randomaccessandy; Keyword(s):
Hi Oliver,
Has any further investigation been made into this issue? I came across it yesterday and have had a identical experience to the other guys here.
This problem is consistent but it...
I just found out for myself that you can't modify the request parameters in HttpServletRequest. Therefore, my idea doesn't work.
Does that mean that I basically can't support case insensitivity?...
Hi,
Is it possible to get round the issue of case sensitivity when auto-binding request params to object models? i.e. Spring MVC will only bind request params to object properties with the same...
One of many neat things about Spring Security is the comprehensive set of authentication related exceptions that can be raised (e.g. BadCredentialsException, AccountExpiredException,...
I seem to have diagnosed the first problem.
I was running version 2.2.0 of STS whereas the greenpages tutorial recommends 2.1.0. With 2.1.0 the server startup is detected no problem!
No idea...
I've run into a few issues with the greenpages example!
I'm running greenpages 2.0.0.RELEASE against dm server 2.0.0.M3. Everything works fine from the command line. However, when trying to run...
Hi all,
I'm confused about how Spring deals with transaction propagation where the read-only property varies from one method to the next.
I'm experimenting with using the Command pattern to...
One thing that stills keeps me awake at night is the whole idea of avoiding lazy initialization problems in the presentation layer (where the service layer is not running in the same JVM - i.e. no...
I've got a bunch of filters I want to be enabled for any Hibernate session that gets created. Is there some way I can intercept the creation of sessions and apply filters, i.e....
In my service layer components, I'm wanting to ensure that any domain object(s) I return, have lazy associations initialized properly - I'm not using OSIV in the web tier and my service layer runs...
Spring Security publishes a number of security related events via the Spring container.
Here are just a handful of them:
AbstractAuthenticationFailureEvent ...
Hi,
I'm seeing confusing behaviour with Spring Security over RMI using Spring Remoting. I have an Apache Wicket application calling remote methods on a Spring based service layer - methods...
I have a service layer exported using Spring Remoting RMI. Service layer methods are secured using method-level security. When a remote client invokes a service method, the security execptions (e.g....
I see what you are saying but if I want to sort by proximity and do pagination, it can't be done at the domain level. With your solution I'd have to load all results into memory and thus completely...
I've got what I believe to be a fairly common requirement to query for results based upon their distance from a defined point. Assume you've got a bunch of places (Place) in a database table, each...
Hi all,
I've got what I think is an interesting question relating to using the DAO pattern to encapsulate data access implementation from the service layer. The issue relates to filtering...