spring - Error in line <context:component-scan="com.gontuseries.hellocontroller" /> -
<?xml version="1.0" encoding="utf-8"?> <!doctype xml> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> <context:component-scan="com.gontuseries.hellocontroller" /> <bean id="viewresolver" class= "org.springframework.web.servelet.view.internalresourceviewresolver"> <property name = "prefix"> <value>"/web-inf/"</value> </property> <property name = "suffix"> <value>"".jsp"</value> </property> </bean> </beans>
i making test spring mvc program getting error in line mentioned above. have included necessary files.
Comments
Post a Comment