我是靠谱客的博主 光亮金鱼,最近开发中收集的这篇文章主要介绍Test-servlet,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

<?xml version="1.0" encoding="UTF-8"?>
<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"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">

<description>Spring-DispatcherServlet需要的配置</description>

<!-- Mapping exception to the handler view
<bean id="exceptionResolover"
class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
<property name="defaultErrorView">
<value>/common/error/error</value>
</property>
<property name="exceptionMappings">
<props>
<prop key="com.ccc.exception.BusinessException">/common/error/businessError</prop>
<prop key="java.sql.SQLException">/common/error/error</prop>
<prop key="java.lang.RuntimeExcption">/common/error/error</prop>
</props>
</property>
</bean>
-->
<!-- 对模型视图名称的解析,即在模型视图名称添加前后缀 -->
<bean id="jstlViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
<bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping">
<property name="order" value="2" />
</bean>

<bean id="localeResolver" class="org.springframework.web.servlet.i18n.CookieLocaleResolver">
<property name="cookieName">
<value>mes_locale</value>
</property>
<property name="cookieMaxAge">
<value>31536000</value>
</property>
</bean>

</beans>

最后

以上就是光亮金鱼为你收集整理的Test-servlet的全部内容,希望文章能够帮你解决Test-servlet所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(64)

评论列表共有 0 条评论

立即
投稿
返回
顶部