SpringMVC环境搭建 配置文件_2

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringMVC环境搭建 配置文件_2相关的知识,希望对你有一定的参考价值。

applicationContext

命名空间:

引入命名空间,这样可以在代码中使用annotation

xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
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/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">

 

<!-- 引入注解 -->

<context:annotation-config/>

 

<!-- 注册并将bean交给IOC容器控制,但是不注册controller类-->

<context:component-scan base-package:"com.wtw.*">

  <context:exclude-filter: type:"annotation" expression="org.springframework.stereotype.Controller"

</context:compnent-scan>

 

<!-- 导入数据库连接配置文件-->

<context:property-placeholder location="classpath:jdbc.properties"/>

 

<!-- 数据库连接池-->

<bean name="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destory-method="close">

  <property name="driverClassName" value="${driverClass}"/>

  <property name="url" value="${jdbcurl}"/>

  <property name="username" value="${username}"/>

  <property name="password" value="${password}"/>

</bean>

 

<!-- 配置jdbcTemplate -->

<bean name="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">

  <property name="dataSource" ref="dataSource"/>

</bean>

 

<!-- 采用注解的方式配置事务-->

<bean name="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">

  <property name="dataSource" ref="dataSource"/>

</bean>

<tx:annotation-driven transaction-manager="txManager"/>

以上是关于SpringMVC环境搭建 配置文件_2的主要内容,如果未能解决你的问题,请参考以下文章

项目一众筹网01_04环境搭建_表述层springMvc的搭建快速打开web.xml快捷键@RequestBody和@ResponseBody的区别以及好处

SpringMVC开发配置文件详解

SpringMVC工作环境搭建 配置文件

免xml配置springmvc应用--搭建

SSH环境搭建步骤

阶段3 3.SpringMVC·_04.SpringMVC返回值类型及响应数据类型_1 搭建环境