I installed Spring Tool Suite and now use it for a small sample project. However, I save the error in the dispatcher-servlet.xml file:
Build path is incomplete. Cannot find class file for org/springframework/beans/factory/Aware
This error stands out here:
<bean **class="org.springframework.web.servlet.view.InternalResourceViewResolver">** <property name="prefix"> <value>/WEB-INF/pages/</value> </property> <property name="suffix"> <value>.jsp</value> </property> </bean>
Any thought?
source share