任何人都可以告诉我,当我们从头开始写下spring-servlet.xml时,我们如何确定需要什么命名空间? 例如,我有以下spring-servlet.xml:
<beans xmlns="**default namespace**">
<context:componet-scan base-package="org.example.controller">
</context:componet-scan>
<bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView">
</property>
<property name="prefix">"/WEB-INF/jsp/"
</property>
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
如何确定应该替换“默认命名空间”?
答案 0 :(得分:0)
你需要
<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">
...
</beans>
您可能需要使用您正在使用的任何版本替换schemaLocation
中的3.0版本。