xml – 此处不允许使用属性p:前缀

我用
spring mvc和dispatcherServlet.xml文件创建了一个项目

<bean id="jspViewResolver"
          class="org.springframework.web.servlet.view.InternalResourceViewResolver"
          p:prefix="/WEB-INF/views/"
          p:suffix=".jsp"
            />

p:前缀和p:后缀是不允许的.我该如何解决这个问题?我使用过SpringVersion 3.2.3.RELEASE

最佳答案 您需要添加p命名空间声明:xmlns:p =“http://www.springframework.org/schema/p”

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
          http://www.springframework.org/schema/beans/spring-beans.xsd">

请参见Spring参考:Chapter 5.4.2.6 XML shortcut with the p-namespace

点赞