I need to have a spring-managed bean which receives properties that configure it, and the value of one of those properties needs to be a non-standard character (tab). I've tried setting the value as...
Type: Posts; User: debradley@gmail.com; Keyword(s):
I need to have a spring-managed bean which receives properties that configure it, and the value of one of those properties needs to be a non-standard character (tab). I've tried setting the value as...
I have an AXIS web service that delegates to a Spring-managed bean so that I can wrap that bean in a Hibernate interceptor to keep the session open across the service invocation, and I am also trying...
I spent a lot of time on the same issue and wasn't able to come up with a satisfactory answer. Here's my best understanding: Spring can only bind form data to complex object relationship through...
I'm not sure I see the advantages of your implementation over using nested properties, supported in Spring without requiring a custom binder.
<spring:bind path="myDate.year">
<select...
I know that BeanWrapper will bind Map properties where the key is a String. I also know that I can get BeanWrapper to convert between a String and an Object by registering a custom editor. I have...
The answer is:
The tables were created as InnoDB tables. My Hibernate properties had the dialect set (incorrectly) to MySQL and hbm2ddl set to create-drop. As a result, Hibernate then created the...
I'm using AbstractTransactionalSpringContextTests in some unit tests with great success on my Windows development environment running MySQL 4.1. My database is happily always left in a clean state no...
Ah, inner bean is a very neat solution I wasn't aware of before. Thanks! For anyone else, here's an example:
<bean id="productManager" ...
AbstractTransactionalSpringContextTests is a great, great thing, but is it possible to have it autowire by name instead of type? Autowire by type fails when the configuration has a transaction proxy....