- 浏览: 343919 次
- 性别:
- 来自: 南京
文章分类
- 全部博客 (169)
- spring (20)
- java (44)
- ibatis (0)
- hibernate (6)
- struts (2)
- javascript (6)
- ajax (1)
- eclipse (4)
- 其他 (10)
- database (17)
- ibatis 分页 (7)
- xml (2)
- pl/sql (6)
- sql (4)
- apache (3)
- oracle (8)
- jdom (1)
- Open ModelSphere (1)
- 线程 (2)
- 多线程 (2)
- 查找文件 (1)
- Comparator (2)
- jxl (2)
- jquery (1)
- Flex (2)
- 非技术 (1)
- mysql (2)
- zxing (1)
- jdbc (1)
- Java内存 (1)
- editplus (1)
- log4j (1)
- sqlserver (2)
- base64 (1)
- Linux (4)
- Shell (2)
- 非技术共享 (1)
- 省市 (1)
- PowerDesigner (3)
- 观察者模式 (2)
- Servlet (1)
- 单点登录 (1)
- IO (1)
- tomcat (1)
- clob (1)
- html (1)
- jsp (2)
- JNative (1)
- WebService (2)
- Highcharts (1)
- Spring Security (1)
- ztree (1)
- Mongodb (3)
- sftp (1)
- SVN (1)
- openSUSE (1)
- Ubuntu (1)
- nio (1)
- springboot (1)
- java8 (1)
最新评论
-
wajjj:
[flash=200,200][url][img][list] ...
【JAVA】读取excel内容(兼容03和07格式) -
xurichusheng:
jjhe369 写道感谢分享!但是发现一个小问题,就是第13, ...
oracle 存储过程分页查询 -
jjhe369:
感谢分享!但是发现一个小问题,就是第13,14行的V_STAR ...
oracle 存储过程分页查询 -
飞天奔月:
为什么不用 Map<String, String> ...
读取.properties的内容,并将内容放入一个Map中 -
xurichusheng:
814687491 写道测试了一下,无法换行!你可以自定义自己 ...
使用google的zxing制作二维码
applicationContext.xml
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> <!-- 数据库连接配置文件 --> <bean id="configBean" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location" value="classpath:jdbc.properties" /> </bean> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <property name="driverClassName" value="${driverClassName}" /> <property name="username" value="${username}" /> <property name="password" value="${password}" /> <property name="url" value="${url}" /> 最大连接数量 <property name="maxActive" value="${maxActive}"/> 最小空闲连接 数 <property name="minIdle" value="${minIdle}"/> 最大空闲连接数 <property name="maxIdle" value="${maxIdle}"/> 初始化连接 数 <property name="initialSize" value="${initialSize}"/> 是否在自动回收超时连接的时候打印连接的超时错误 <property name="logAbandoned" value="${logAbandoned}"/> 是否自动回收超时连接 <property name="removeAbandoned" value="${removeAbandoned}"/> 超时时间(以秒数为单位) <property name="removeAbandonedTimeout" value="${removeAbandonedTimeout}"/> 超时等待时间(以毫秒为单位) <property name="maxWait" value="${maxWait}"/> </bean> </beans>
发表评论
-
spring mvc 定时任务,避免同时执行两次
2019-03-09 18:14 3291spring版本:3.1.0 或以 ... -
Spring jdbcTemplate示例
2015-07-08 15:26 1184Spring jdbcTemplate示例 1. ... -
jsp页面显示二进制图片
2014-11-05 15:58 40791. DAO层 import java.sql.C ... -
Spring工具类,提供取得Spring配置文件中定义的Bean的方法
2014-05-15 19:02 1553在 java EE 工程中,经常会用到定 ... -
使用Spring的JdbcTemplate处理Clob
2013-11-01 11:04 43031. 数据库表 req_seq CREATE TA ... -
oracle 存储过程分页查询
2013-10-24 11:09 1966oracle 10gR2 Spring JDBCTe ... -
Spring MVC 处理请求流程
2011-06-01 15:03 1318Spring MVC 处理请求流程: ... -
在spring中配置ibatis 04_dao类
2011-05-31 14:15 1661BaseDAOImpl<T>.java p ... -
在spring中配置ibatis 03_xml配置
2011-05-31 14:11 1026UserEntity.xml <?xml ver ... -
在spring中配置ibatis 02_xml配置
2011-05-31 14:09 9771、applicationContext-service.xm ... -
在spring中配置ibatis 01_xml配置
2011-05-31 14:01 10681、applicationContext.xml &l ... -
jdbc.properties
2011-05-31 11:37 3797### mysql ### driverClassName ... -
Spring 配置文件--- 事务处理
2011-05-31 11:28 1364事务的处理在service层。 &l ... -
Spring 配置文件--- 数据源配置(c3p0)
2011-05-31 11:24 1236<!-- 数据库连接配置文件 --> & ... -
spring 定时任务
2011-05-20 14:54 1139import java.util.TimerTask; ... -
另一个 spring 拦截器
2010-07-13 13:48 1569import javax.servlet.http.HttpS ... -
Spring RedirectView 传值乱码解决
2010-05-04 17:40 3154使用的是spring的注解 public ModelAnd ... -
Spring 拦截器
2010-04-27 09:02 58931、在做项目的时候,遇到了一个Spring拦截器的问题。 项目 ... -
一个 Spring 拦截器
2010-04-13 14:40 1610package com.common.core.interce ...
相关推荐
3. `<bean>`:这是Spring配置文件中的基础元素,用于定义Bean的实例化、配置及依赖关系。在`spring-jdbc-4.2.xsd`中,它可以用来定义DataSource、JdbcTemplate等组件。 4. `<jee:jndi-lookup>`:用于从JNDI目录服务...
4. **配置参数**:DBCP 允许开发者通过配置文件或代码设置各种参数,如最大活动连接数、最大空闲连接数、超时时间等,以便根据应用需求调整连接池的性能。 5. **异常处理**:DBCP 提供了对数据库连接异常的处理机制...
2. 配置数据源:在Spring的配置文件中,定义`BasicDataSource`的bean,设置相关的属性如URL、用户名、密码以及连接池参数。 3. 在代码中获取连接:通过Spring的`ApplicationContext`或@Autowired注解,注入`...
3. 创建数据源:根据配置信息,实例化一个`BasicDataSource`对象,这是DBCP提供的数据源实现。 4. 获取连接:在需要与数据库交互的地方,通过调用数据源的`getConnection()`方法获取连接。 5. 使用并释放连接:执行...
### Spring 数据源配置详解 #### 一、Spring与数据源简介 在Java企业级应用开发中,数据库操作是必不可少的一部分。Spring框架作为一种流行的轻量级Java应用开发框架,提供了强大的数据库访问支持,其中包括对数据...
在 Spring 配置文件中,我们可以定义各种类型的Bean对象,例如数据源、Session工厂、Hibernate模板、DAO对象、Service对象等等。这些Bean对象之间可以通过依赖注入的方式进行关联和配置。 在给定的配置文件中,我们...
在Spring3中配置数据源,包括DBCP,C3P0,Proxool,Bonecp主要的数据源,里面包含这些数据源的jar文件和依赖文件及配置文件。。 如Bonecp目前听说是最快的数据源,速度是传统的c3p0的25倍, bonecp.properties文件: ...
在Spring的配置文件中,可以定义一个Bean来注入DBCP数据源,然后在其他需要数据库连接的Bean中依赖注入这个数据源,实现数据库连接的管理。 在实际应用中,使用DBCP时需要注意以下几点: 1. 配置文件:需要正确...
首先,我们需要在Spring MVC的配置文件中声明DBCP数据源。这通常在`applicationContext.xml`或`dispatcher-servlet.xml`中完成。配置包括设置数据库驱动类、URL、用户名、密码,以及连接池的属性,如最大连接数、...
例如,在Spring框架中,可以通过XML配置文件来设置这些属性: ```xml <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> <!-- 其他配置属性 --> ``` 总的来说,Apache Commons ...
### Spring MVC 中配置多数据源详解 在Spring框架中配置多数据源的需求比较常见,尤其在需要处理不同类型的数据库或需要实现数据隔离的应用场景中。本文将详细介绍如何在Spring MVC项目中配置并使用多数据源。 ###...
6. Spring整合MyBatis:在Spring配置文件中,使用MapperScannerConfigurer扫描Mapper接口,将其注册为Spring的Bean。 7. 使用:在业务逻辑中,通过Spring的@Autowired注解,可以自动注入Mapper接口,直接调用其方法...
例如,在Spring配置文件中,可以通过 `<bean>` 元素来配置 `BasicDataSource`,并将其注入到其他需要数据库连接的bean中。 总的来说,Apache Commons Pool 和 Commons DBCP 是Java开发中必不可少的工具,它们为高效...
Spring通过配置文件可以很容易地设置DBCP的数据源属性,如最大连接数、最小连接数、超时时间等,以满足不同应用场景的需求。使用DBCP作为数据源,可以有效地避免数据库连接泄露,提高系统稳定性和响应速度。 在...
这个文件通常包含了数据库连接池的创建、配置和管理类,如`BasicDataSource`,它是Spring中最常使用的数据源实现。 其次,为了与特定的数据库进行交互,你还需要相应的JDBC驱动jar包。例如,如果你使用的是MySQL...
3. **配置DataSource**:SqlSessionFactory需要数据源(DataSource),所以在Spring配置中也需要定义数据源,可以使用Apache的Commons DBCP或者Tomcat的JNDI数据源等。 4. **Mapper配置**:MyBatis的Mapper接口和...
### Spring配置文件详解 #### 一、引言 在Java Web开发领域,Spring框架因其强大的功能和灵活性而受到广泛欢迎。对于初学者来说,理解Spring的配置方式是至关重要的第一步。本文将详细介绍Spring中常见的配置文件...
2. **配置数据源**:在Spring的配置文件(如`applicationContext.xml`)中,定义一个名为`dataSource`的bean,使用DBCP的数据源实现。例如: ```xml <bean id="dataSource" class="org.apache.commons.dbcp....
8. **与其他框架的集成**:在Spring框架中,可以很容易地集成Apache Commons DBCP作为数据源,简化数据库连接池的配置。 9. **版本更新**:随着版本的迭代,DBCP可能会引入新的特性和改进,例如“commons-dbcp2-...
然后,你可以在配置文件(如`web.xml`或独立的应用配置文件)中配置DBCP数据源,设置数据库URL、用户名、密码、最大连接数、最小连接数等相关参数。 5. **优点与使用注意事项**: DBCP的优点在于其简单易用和良好...