Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

am using liferay 6.1 and created my custom portlet and in that am using custom query which directly get the records from database with the following ....

public List<DashBoardBean> GetPieChartDataForCampaignbyOrganization(
            ThemeDisplay pThemeDisplay) {

        log.info("In GetPieChartDataForCampaignbyOrganization ");
        Context CtxObj;
        long pParentOrgId;
        ResultSet advResultSet = null;
        List<DashBoardBean> dashboardbeanObjList = new ArrayList<DashBoardBean>();
        try {

            CtxObj = new InitialContext();
            DataSource DsObj = (DataSource) CtxObj
                    .lookup("java:comp/env/jdbc/Liferay");
            Connection ConObj = DsObj.getConnection();
            Statement sStmtObj = ConObj.createStatement();

            advResultSet = sStmtObj
                    .executeQuery("MY CUSTOM QUERY WILL BE HERE");
            while (advResultSet.next()) {
                DashBoardBean dashboardbeanObj = new DashBoardBean();
                dashboardbeanObj
                        .setsOrganizationName(advResultSet.getString(1));
                dashboardbeanObj.setlOrganizationCount(advResultSet.getLong(2));
                dashboardbeanObjList.add(dashboardbeanObj);
            }
        } catch (NamingException e) {
            // TODO Auto-generated catch block
            dashboardbeanObjList = null;
            e.printStackTrace();
        } catch (SQLException e) {
            dashboardbeanObjList = null;
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (PortalException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (SystemException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        log.info("Leave GetPieChartDataForCampaignbyOrganization ");
        return dashboardbeanObjList;
    }

Above is code snippet of one of my function..i have more then 5 function with the same structure..jsut sql query is diffrent in function...

Now Problem is that i have to call more then 5 fucntions like this in page load...so when i use to reload the page frquently...its gives me error as following ...

   org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot get a connection, pool error Timeout waiting for idle object
        at org.apache.tomcat.dbcp.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:114)
        at org.apache.tomcat.dbcp.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044)
        at emenu.advertise.appbl.DashBoardCustomQuery.GetPieChartDataForCampaignStatus(DashBoardCustomQuery.java:112)
        at emenu.advertise.appbl.DashBordBL.GetPieChartDataForCampaignStatus(DashBordBL.java:292)
        at emenu.advertise.portlet.RestaurantPortlet.serveResource(RestaurantPortlet.java:402)
        at com.liferay.portlet.FilterChainImpl.doFilter(FilterChainImpl.java:118)
        at com.liferay.portal.kernel.portlet.PortletFilterUtil.doFilter(PortletFilterUtil.java:71)
        at com.liferay.portal.kernel.servlet.PortletServlet.service(PortletServlet.java:111)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
        at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:72)
        at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilter.doFilter(InvokerFilter.java:73)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
        at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:684)
        at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:471)
        at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:402)
        at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:329)
        at com.liferay.portlet.InvokerPortletImpl.invoke(InvokerPortletImpl.java:531)
        at com.liferay.portlet.InvokerPortletImpl.invokeResource(InvokerPortletImpl.java:626)
        at com.liferay.portlet.InvokerPortletImpl.serveResource(InvokerPortletImpl.java:436)
        at com.liferay.portal.action.LayoutAction.processPortletRequest(LayoutAction.java:1075)
        at com.liferay.portal.action.LayoutAction.processLayout(LayoutAction.java:719)
        at com.liferay.portal.action.LayoutAction.execute(LayoutAction.java:249)
        at ............................
.......java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
            at java.lang.Thread.run(Thread.java:619)
        Caused by: java.util.NoSuchElementException: Timeout waiting for idle object
            at org.apache.tomcat.dbcp.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1171)
            at org.apache.tomcat.dbcp.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106)
            ... 131 more
        09:24:11,163 INFO  [http-bio-8080-exec-5][DashBoardCustomQuery:665] Leave GetHighestClickRestaurantName 
        09:24:11,163 INFO  [http-bio-8080-exec-5][DashBoardCustomQuery:304] Leave GetLineChartDataForHighestClickedByRestaurant 
        09:24:11,164 INFO  [http-bio-8080-exec-5][DashBordBL:166] Leave GetLineChartDataByRestaurant From DashBordBl

I know that i have done something wrong..but i dont know where...may be its beacuse its sql connection just lost from the server///is it because i am not closing connection..please help me...and correct me where am wrong...i had just given one example of my function the way i used to fetch data from other function ....

share|improve this question

1 Answer

up vote 0 down vote accepted

i have just found the solution as i have never closed the connection object after execution of query.i have done as follows which works for me after try catch block...

finally {
             try {
                 if(CtxObj!=null)   {
                     CtxObj.close();
                    }
                    if(sStmtObj!=null){
                        sStmtObj.close();
                    }
                    if(ConObj!=null){
                        ConObj.close();
                    }
            } catch (NamingException e) {
                // TODO Auto-generated catch block
                log.info(e);
            } catch (SQLException e) {
                // TODO Auto-generated catch block
                log.info(e);
            }
        }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.