posted 12 years ago
I had created the simple spring MVC controller, when i tried to execute i am getting the error.
Error Message:
org.springframework.beans.factory.CannotLoadBeanCl assException: Cannot find class [SpringApp.web.java.HelloController] for bean with name 'Redirect.jsp' defined in ServletContext resource [/WEB-INF/springapp-servlet.xml]; nested exception is java.lang.ClassNotFoundException: SpringApp.web.java.HelloController
This is my application structure.
SpringApp
----Web Pages
----META-INF
----WEB-INF
----springapp-servlet.xml
----web.xml
----Redirect.jsp
----index1.jsp
----Source Packages
----java
----HelloController.java
web.xml
--------
springapp-servlet.xml
----------------------
index1.jsp
---------
Redirect.jsp
------------
HelloController.java
-------------------