ssh(Spring+Spring mvc+hibernate)——applicationContext-servlet.xml
2024-04-24 07:18:34 阅读次数:27
mvc,Spring
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http:///schema/beans"
xmlns:xsi="http:///2001/XMLSchema-instance"
xmlns:p="http:///schema/p"
xmlns:context="http:///schema/context"
xmlns:util="http:///schema/util"
xmlns:mvc="http:///schema/mvc"
xsi:schemaLocation="http:///schema/beans
http:///schema/beans/spring-beans-3.1.xsd
http:///schema/context
http:///schema/context/spring-context-3.1.xsd
http:///schema/mvc
http:///schema/mvc/spring-mvc-3.1.xsd
http:///schema/util
http:///schema/util/spring-util-3.1.xsd
">
<mvc:annotation-driven />
<bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"/>
<bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter"/>
<context:component-scan base-package="org.action" />
<bean 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>
</beans>
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/u_12718584/2843403,作者:穆雄雄的博客,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:JUnit测试使用教程
下一篇:编写函数求解一元二次方程