JSP Spring中Druid连接池配置详解

JSP Spring中Druid连接池配置

jdbc.properties

url=jdbc:postgresql://***.***.***.***:****/**** username=*** password=***

applicationContext.xml中配置bean

<!-- 阿里 druid 数据库连接池 --> <bean init-method="init" destroy-method="close"> <!-- 基本属性 url、user、password --> <property value="${url}" /> <property value="${username}" /> <property value="${password}" /> <!-- 配置初始化大小、最小、最大 --> <property value="1" /> <property value="1" /> <property value="20" /> <!-- 配置获取连接等待超时的时间 --> <property value="60000" /> <!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 --> <property value="60000" /> <!-- 配置一个连接在池中最小生存的时间,单位是毫秒 --> <property value="300000" /> <property value="SELECT 'x'" /> <property value="true" /> <property value="false" /> <property value="false" /> <!-- 打开PSCache,并且指定每个连接上PSCache的大小 --> <property value="true" /> <property value="20" /> <!-- 配置监控统计拦截的filters,去掉后监控界面sql无法统计 --> <property value="stat" /> </bean>

监控配置web.xml

<filter> <filter-name>DruidWebStatFilter</filter-name> <filter-class>com.alibaba.druid.support.http.WebStatFilter</filter-class> <init-param> <param-name>exclusions</param-name> <param-value>*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*</param-value> </init-param> </filter> <filter-mapping> <filter-name>DruidWebStatFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <servlet> <servlet-name>DruidStatView</servlet-name> <servlet-class>com.alibaba.druid.support.http.StatViewServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>DruidStatView</servlet-name> <url-pattern>/druid/*</url-pattern> </servlet-mapping>

该配置可以访问监控界面,配置好后,可以通过 :port/项目名/druid/index.html

监控数据库访问性能

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzjfxj.html