spring MVC--WebApplicationContext做了什麼

來源:互聯網
上載者:User

標籤:spring mvc

在WebApplicationContext中預設內建了DispatcherServlet依賴的bean!我們可以根據實際的項目需要對這些bean進行自訂參數設定。因為如果在設定檔中存在我們自訂的bean那麼預設的bean將被覆蓋。下面詳解一下MVC中預設是用了哪些bean。1、HandlerMapping 處理請求映射的路勁2、HandlerAdapter3、HandlerExceptionResolver 異常處理資訊,是用時可以自訂錯誤資訊轉到哪些view中<bean
class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
<property name="exceptionMappings">
<props>
<!-- 沒有許可權 -->
<prop key="org.apache.shiro.authz.UnauthorizedException">error</prop>
<!-- 上傳錯誤 -->
<prop
key="org.springframework.web.multipart.MaxUploadSizeExceededException">error_fileupload</prop>
</props>
</property>
</bean>4、ViewResolver 視圖解析器,自訂可以配置預設視圖所在位置的首碼和視圖檔案的尾碼<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
5、LocaleResolver 國際化資訊視圖6、ThemeResolver 主題解析器7、MultipartResolver 檔案上傳功能,自訂時可以使用commons io作為功能的實現<bean id="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!-- 指定所上傳檔案的總大小不能超過200KB。注意maxUploadSize屬性的限制不是針對單個檔案,而是所有檔案的容量之和 -->
<property name="maxUploadSize" value="200000" />
</bean>
8、FlashMapManager

spring MVC--WebApplicationContext做了什麼

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.