首页 > 代码库 > MVC模式在Java Web应用程序中的实例

MVC模式在Java Web应用程序中的实例

1.可用性

使用SimpleMappingExceptionResolver实现异常处理

 只需要在Spring的配置文件applicationContext.xml中增加以下内容:

<bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">   
    <property name="defaultErrorView" value="http://www.mamicode.com/error"></property>   
    <property name="exceptionAttribute" value="http://www.mamicode.com/ex"></property>  
    <property name="exceptionMappings">  
        <props> 
            <prop key="com.core.exception.BusinessException">business_error</prop>  
            <prop key="com.core.exception.ParameterException">parameter_error</prop>    
        </props>  
    </property>  
</bean>

2.可修改性

jsp界面的每一个功能对应后台的函数,一个函数独立的完成一个功能,由配置文件决定每个功能要执行的函数,当功能对应的操作发生改变时,只需要改变配置文件的指向就可以了。

3.性能

4.安全性

 

5.可测试性

6.易用性

MVC模式在Java Web应用程序中的实例