我自己写了一个测试页面,但是很奇怪的是,我第一次请求数据库的页面必须要刷新才能出来 50
第一次进入页面出不来,必须要刷新才能出来,我后台用的是C3P0连接池,我查看了log日志发现,在第一次请求数据库连接的操作好像是初始化C3P0数据源,刷新以后页面就没问题...
第一次进入页面出不来,必须要刷新才能出来,我后台用的是C3P0连接池,我查看了log日志发现,在第一次请求数据库连接的操作好像是初始化C3P0数据源,刷新以后页面就没问题了,所以貌似这个问题是C3P0数据源没有随容器自动初始化,而是我第一次请求数据库的时候才去初始化,而且初始化后就直接返回了,导致第一次请求数据库(比如增删改查操作),实质变成了初始化数据源,其他什么都没做???
以下是我的日志:
第一次请求:
com.wotao.taotao.web.test.interceptor.TestInterceptor - execute something before Action method
INFO com.opensymphony.xwork2.interceptor.LoggingInterceptor - Starting execution stack for action /test/test_View
2011-10-05 16:10:44,688 - com.mchange.v2.c3p0.impl.AbstractPoolBackedDataSource -46239 [http-8080-7] INFO com.mchange.v2.c3p0.impl.AbstractPoolBackedDataSource - Initializing c3p0 pool... com.mchange.v2.c3p0.ComboPooledDataSource [ acquireIncrement -> 2, acquireRetryAttempts -> 10,.............onTimeout -> 0, usesTraditionalReflectiveProxies -> false ]
2011-10-05 16:10:46,091 - com.opensymphony.xwork2.interceptor.TimerInterceptor -47642 [http-8080-7] INFO com.opensymphony.xwork2.interceptor.TimerInterceptor - Executed action [/test/test_View!doView] took 1560 ms.
2011-10-05 16:10:46,091 - com.opensymphony.xwork2.interceptor.LoggingInterceptor -47642 [http-8080-7] INFO com.opensymphony.xwork2.interceptor.LoggingInterceptor - Finishing execution stack for action /test/test_View
2011-10-05 16:10:46,091 - com.wotao.taotao.web.test.interceptor.TestInterceptor -47642 [http-8080-7] INFO com.wotao.taotao.web.test.interceptor.TestInterceptor - execute something after Action method
-------------------很明显看到的只有: Initializing c3p0 pool...com.mc.........
以后的请求
INFO com.wotao.taotao.web.test.interceptor.TestInterceptor - execute something before Action method
INFO com.opensymphony.xwork2.interceptor.LoggingInterceptor - Starting execution stack for action /test/test_View
2011-10-05 16:11:08,447 - com.wotao.taotao.service.test.aspect.AspectTest -69998 [http-8080-7] INFO com.wotao.taotao.service.test.aspect.AspectTest - Method:getAllTestList executed 128 milliseconds.
2011-10-05 16:11:08,679 - com.opensymphony.xwork2.interceptor.TimerInterceptor -70230 [http-8080-7] INFO com.opensymphony.xwork2.interceptor.TimerInterceptor - Executed action [/test/test_View!doView] took 431 ms.
2011-10-05 16:11:08,679 - com.opensymphony.xwork2.interceptor.LoggingInterceptor -70230 [http-8080-7] INFO com.opensymphony.xwork2.interceptor.LoggingInterceptor - Finishing execution stack for action /test/test_View
2011-10-05 16:11:08,680 - com.wotao.taotao.web.test.interceptor.TestInterceptor -70231 [http-8080-7] INFO com.wotao.taotao.web.test.interceptor.TestInterceptor - execute something after Action method
很明显的看到:Method:getAllTestList executed 128 milliseconds. 说明执行了方法
劳烦各位大侠,帮忙看一下啊,为什么C3P0数据源不能随容器初始化,或者说有什么办法解决这个问题啊 展开
以下是我的日志:
第一次请求:
com.wotao.taotao.web.test.interceptor.TestInterceptor - execute something before Action method
INFO com.opensymphony.xwork2.interceptor.LoggingInterceptor - Starting execution stack for action /test/test_View
2011-10-05 16:10:44,688 - com.mchange.v2.c3p0.impl.AbstractPoolBackedDataSource -46239 [http-8080-7] INFO com.mchange.v2.c3p0.impl.AbstractPoolBackedDataSource - Initializing c3p0 pool... com.mchange.v2.c3p0.ComboPooledDataSource [ acquireIncrement -> 2, acquireRetryAttempts -> 10,.............onTimeout -> 0, usesTraditionalReflectiveProxies -> false ]
2011-10-05 16:10:46,091 - com.opensymphony.xwork2.interceptor.TimerInterceptor -47642 [http-8080-7] INFO com.opensymphony.xwork2.interceptor.TimerInterceptor - Executed action [/test/test_View!doView] took 1560 ms.
2011-10-05 16:10:46,091 - com.opensymphony.xwork2.interceptor.LoggingInterceptor -47642 [http-8080-7] INFO com.opensymphony.xwork2.interceptor.LoggingInterceptor - Finishing execution stack for action /test/test_View
2011-10-05 16:10:46,091 - com.wotao.taotao.web.test.interceptor.TestInterceptor -47642 [http-8080-7] INFO com.wotao.taotao.web.test.interceptor.TestInterceptor - execute something after Action method
-------------------很明显看到的只有: Initializing c3p0 pool...com.mc.........
以后的请求
INFO com.wotao.taotao.web.test.interceptor.TestInterceptor - execute something before Action method
INFO com.opensymphony.xwork2.interceptor.LoggingInterceptor - Starting execution stack for action /test/test_View
2011-10-05 16:11:08,447 - com.wotao.taotao.service.test.aspect.AspectTest -69998 [http-8080-7] INFO com.wotao.taotao.service.test.aspect.AspectTest - Method:getAllTestList executed 128 milliseconds.
2011-10-05 16:11:08,679 - com.opensymphony.xwork2.interceptor.TimerInterceptor -70230 [http-8080-7] INFO com.opensymphony.xwork2.interceptor.TimerInterceptor - Executed action [/test/test_View!doView] took 431 ms.
2011-10-05 16:11:08,679 - com.opensymphony.xwork2.interceptor.LoggingInterceptor -70230 [http-8080-7] INFO com.opensymphony.xwork2.interceptor.LoggingInterceptor - Finishing execution stack for action /test/test_View
2011-10-05 16:11:08,680 - com.wotao.taotao.web.test.interceptor.TestInterceptor -70231 [http-8080-7] INFO com.wotao.taotao.web.test.interceptor.TestInterceptor - execute something after Action method
很明显的看到:Method:getAllTestList executed 128 milliseconds. 说明执行了方法
劳烦各位大侠,帮忙看一下啊,为什么C3P0数据源不能随容器初始化,或者说有什么办法解决这个问题啊 展开
4个回答
展开全部
这个问题我以前碰到过。
我之前在hibernate里面手动关闭session就可以了。
或者 flush一下
我之前在hibernate里面手动关闭session就可以了。
或者 flush一下
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
富港检测技术(东莞)有限公司_
2024-06-06 广告
2024-06-06 广告
ISTA3L是一个基于研究、数据驱动的测试协议,它模拟了由零售公司完成的产品订单被直接运送给消费者时所经历的危险,它允许用户评估包装产品的能力,以承受运输和处理包装产品时所经历的供应链危险,从接收到任何电子商务零售商履行操作,直到最终消费者...
点击进入详情页
本回答由富港检测技术(东莞)有限公司_提供
2016-01-24
展开全部
不需要
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看下你的applicationConetxt文件怎么写的。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询