Problem was I didn't have an applicationContext.xml file in META-INF/spring
A simple line fixed it:
<context:component-scan base-package="com.abc.web"/>
Thanks.
Type: Posts; User: albert.liptay@citrix.com; Keyword(s):
Problem was I didn't have an applicationContext.xml file in META-INF/spring
A simple line fixed it:
<context:component-scan base-package="com.abc.web"/>
Thanks.
Trying to create a simple Web Module using the Spring MVC controller annotations.
Where I'm stuck is how exactly the DispatcherServlet works in this configuration.
Here is my manifest.mf:
...