【viewResolver】 springmvc jsp

來源:互聯網
上載者:User

標籤:

 

  1. <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">  
  2.  <property name="prefix" value="/WEB-INF/jsp/" />  
  3.  <property name="suffix" value=".jsp" />  
  4. </bean>  

其實InternalResourceViewResolver的工作很簡單: 在視圖邏輯名前面加上prefix,後面加上suffix;

  1. <bean id="myViewResolver" class="org.springframework.web.servlet.view.ResourceBundleViewResolver">  
  2.     <property name="order" value="1"/>  
  3.     <property name="basename" value="views"/>  
  4. </bean>  

 

因為可以配置多個viewResolver,所以上面的resolver還有一個選項order, 標明優先順序。

 

 

  通過controller和直接存取jsp兩種

我希望把使用者可以直接存取的jsp放在 /jsp/ 下,把通過Controller才能訪問的jsp放在/WEB-INF/jsp/下

 

 

   Spring mvc 使用多種viewResolver的問題

<bean id="velocityConfigurer" class="org.springframework.web.servlet.view.velocity.VelocityConfigurer">          <property name="resourceLoaderPath" value="/WEB-INF/velo/"/>          <property name= "velocityProperties">                    <props>                         <prop key="input.encoding">utf-8</prop>                         <prop key="output.encoding">utf-8</prop>                        </props>                </property>                 </bean>  <bean id="viewResolver" class="org.springframework.web.servlet.view.velocity.VelocityViewResolver">            <property name="cache" value="false"/>            <property name="prefix" value=""/>            <property name="suffix" value=".vm"/>            <property name="contentType"><value>text/html;charset=UTF-8</value></property>            <property name="exposeSpringMacroHelpers" value="true"/>            <property name="order"><value>0</value></property>      </bean>       <bean id="JSPviewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">            <property name="cache" value="false"/>            <property name="prefix" value="/WEB-INF/jsp/"/>            <property name="suffix" value=".jsp"/>            <property name="contentType"><value>text/html;charset=UTF-8</value></property>            <property name="order"><value>1</value></property>      </bean>

 

【viewResolver】 springmvc jsp

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.