• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

datasource for mysql

 
Ranch Hand
Posts: 110
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I m using struts1.2.9, tomcat 6 and mysql. I m trying to establish connection pooling and have done the following

in META-INF/context.xml

<Context path="" reloadable="false">
<Resource driverClassName="com.mysql.jdbc.Driver" maxActive="40" maxIdle="5" maxWait="5000" minEvictableIdleTimeMillis="30000" name="jdbc/mydB" password="root123" testOnBorrow="true" testWhileIdle="true" type="javax.sql.DataSource" url="jdbc:mysql://localhost:3306/test?autoReconnect=true&zeroDateTimeBehavior=convertToNull" username="root"/>
<WatchedResource>WEB-INF/web.xml</WatchedResource>
</Context>

wrote a java class



when i try to open db connection i m getting null pointer exception.. What else needs to be configured to get this working. any ideas are welcome.

Thank you
 
Ranch Hand
Posts: 544
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am not sure where in you code you are getting the NPE.
But the code below looks wrong, probably you can correct it and check .

Line 1 seems wrong and will fetch the resource that is DataSource and not the Context.
Instead you should just have something like

Where datasource string can be JNDI Name of the datasource. In your case "java:comp/env/jdbc/mydB".


 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic