I am facing the following issues with Spring 3.0 MVC, Apache Tiles 2.1.3 on Spring DM 2 -
1. Got the following Exception -
Caused by: java.lang.NoClassDefFoundError: org/springframework/core/io/support/ResourcePatternResolver
I removed version range for the following packages in the com.springsource.org.apache.tiles.servlet-2.1.3.jar
org.springframework.core.io,
org.springframework.core.io.support,
org.springframework.web.context.support
After these changes my web bundle was successfully deployed. So, where can I get the compatible Tile bundles for Spring 3?
2. On runtime, it was not able to resolve tiles-jsp.tld. So, I have to copy tiles-jsp.tld under WEB-INF. Why my web bundle not able to see the tiles-jsp.tld from imported tile bundle? While the same work fine for other tag libs like Spring, JSTL etc.
Regards,
Pranav


