Results 1 to 2 of 2
- 01-14-2008, 11:28 AM #1
Member
- Join Date
- Nov 2007
- Posts
- 4
- Rep Power
- 0
Database connectivity in Jave struts with Hibernate
Hi,
I have a particular problem in accessing the application.
Once I try to login as user, system doesnot allow me to enter into the system.
I shows User Id or password is incorrect. However user id and password are correct as per the data inside the database.
I have user Hibernate for this struts application. Could you let me know the possible reasons why the application is not connected to the database.
Thanks,
Sanjay.
- 02-02-2008, 08:41 PM #2
Member
- Join Date
- Apr 2007
- Location
- Indiana
- Posts
- 83
- Rep Power
- 0
You are going to need something like this someplace in an xml file. Do you have it?
This is for Oracle but it would be similar for MySql, only youwould use the mysql driver.Java Code:<bean id="dataSourceDOES" name="dataSourceDOES" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close"> <property name="driverClass" value="oracle.jdbc.driver.OracleDriver"/> <property name="jdbcUrl" value="jdbc:oracle:thin:@111.222.333.444:1521:test"/> <property name="user" value="dbuser"/> <property name="password" value="password"/> <property name="minPoolSize" value="1"/> <property name="acquireIncrement" value="1"/> <property name="maxPoolSize" value="3"/> <property name="autoCommitOnClose" value="false" /> </bean>
Similar Threads
-
database connectivity
By rilwanfit in forum NetworkingReplies: 1Last Post: 03-13-2009, 07:54 PM -
Java Database Connectivity
By Java Tutorial in forum Java TutorialReplies: 2Last Post: 02-08-2009, 02:15 AM -
Hibernate with multiple database
By Marty in forum JDBCReplies: 3Last Post: 12-23-2008, 12:57 PM -
How can I store an image to the database using hibernate
By cryss_tyna in forum JDBCReplies: 0Last Post: 08-15-2007, 01:48 PM -
Hibernate 2.1.8 / Oracle 10 / Tomcat 5.0.28 : Data not retrieved from the database
By scastro in forum JDBCReplies: 4Last Post: 08-09-2007, 10:41 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks