how can I connect jboss with database and how can I configure oracle-ds.xml
Asked
Active
Viewed 7,587 times
0

Lucas Kauffman
- 16,880
- 9
- 58
- 93

Mohammad AL-Rawabdeh
- 1,612
- 12
- 33
- 54
1 Answers
2
You need to do only few things:
- Go to directory
docs/examples/jca
(in JBoss) and there you can findoracle-ds.xml
file, you can use that file as a template for your configuration. - Copy
oracle-ds.xml
to your profile directory (for exampledefault
). - Edit that file and set up your JDBC connection string.
- Copy jar library with Oracle thin database drivers to profle
lib
directory. - Start your JBoss server.
You can find more information on that subject on JBoss Community Wiki: http://community.jboss.org/wiki/configdatasources.

Lukasz Stelmach
- 324
- 2
- 8