After one week of debugging (I striped down my original project until I was able to identify the source of the described error) I now know what went wrong:
The exposed method of the faulty...
Type: Posts; User: kai.moritz; Keyword(s):
After one week of debugging (I striped down my original project until I was able to identify the source of the described error) I now know what went wrong:
The exposed method of the faulty...
My Spring-3.0.5/Hibernate-3.3.0 webapp does not store collections. When creating a new persitent object with an asscociated collection, the object is persited, but the collection not. In a test-case...
I am not sure, if I get you right.
Yout have to differentiate between the servlet-mapping, which is configured in web.xml and the request-mapping, which is configured via the...
You got me wrong! (Perhaps, because of my bad english...)
In my case, it was like this:
When you change the servlet-mapping from
/*
to
Thanks for your reply!
I will stick to annotations than and map all URI's to one method...
Greetings
Kai Moritz
When defining the request-mapping in a xml-document, one can use something like this:
/foo/bar/foo.html=X
/foo/**.html=Y
In this situation, the first matching pattern will win. So, if the URL...
I had the same problem yesterday.
When mapping onto a path like /foo/*, the RequestMapping-Annotation only sees the part that matches the *.
Hence, in your case it will work again, if you...
My fault!
The solution (<tx:annotation-driven proxy-target-class="true"/>) still works with 3.0.x!
I just confused <mvc:annotation-driven/> and <tx:annotation-driven/>
Hi folks!
I have a problem with a controller-class, which implements an interface.
I am using the new namespace-configuration with no special adjustments, just like in all the examples in the...
Here is my configuration. Not perfect, but it works for me. I patched it up from my old configuration, the small bits in the HTML-documentation and your excellent Blog post: Behind the Spring...
Thank you for that quick answer.
I decided to switch back to bean-style configuration, because in my opinion, it is more convenient to have all configuration in one place, rather than have it...
Hi Folks!
I'm migrating from 2.0.5 to 3.0.2.
Encouraged by the documentation, I'm trying to switch my old beans-style configuration to the new namespace-approach.
But I'm not able, to get...