Sep 25, 2013 | JDeveloper, Oracle, Recent
To add a Data Source from JDeveloper:
- View > Application Server Navigator
- Application Servers > IntegratedWebLogicServer
- R-click > Launch Administrative Console…
-that should be i.e. like “http://127.0.0.1:7101/console/login/LoginForm.jsp”
- Login with user/password
- From Domain Structure open Services > select Data Sources
- New > Generic Data Source
- Specify the connection properties:
- Name: MyConnectionDS (or whatever you defined in your Java app data source)
- JNDI Name: comp/env/jdbc/MyConnectionDS or jdbc/PoliceConnectionDS
- Database Type: Oracle
- > Next
- Database Driver: Oracle’s Driver (thin) for Instance Connections (versions 9.0.1 or later)
- > Next
- Supports Global Transactions
- One-phase commit
- > Next
- Type in: Database Name, Host Name, Port, Database User Name, Password
- > Next
- Test Database Connection screen > click Test Your Configuration
- if “Connection test succeeded.”, click Finish
Your new data source should be ready to use for local server run/debug.
Jan 17, 2013 | JDeveloper
The reason you get some numbers next to file names of JDeveloper (or IPs on project names) is because subversioning is enable in your JDeveloper’s options.
To disable and continue to use your external subversioning system do as follows:
From within JDeveloper:
[text]Versioning > Configure…
Deselect “Versioning Support for Subversion…”[text]
Restart your JDeveloper and the revision numbering should go away.
Mar 28, 2011 | java, JDeveloper
JDeveloper picks-up the default locale language from the OS.
To change this and force JDev to a specific language:
- Open JDEV_HOME/jdev/bin/jdev.conf
- Add the following lines for English:
AddVMOption -Duser.language=en
AddVMOption -Duser.country=US
This will show all warnings and message details in English.
credit: OraTransplant.nl
Sep 14, 2010 | java
To move a JDeveloper folder to a new location/machine:
- First find and edit the following files to the new path:
path_to_new_jdev_root_folder\jdev\system\oracle.j2ee.10.1.3.42.70\embedded-oc4j\config\server.xml
- Change all the paths referencing the old JDeveloper folder with the new path i.e.
old path is: c:\jdev_10.1.3.4
and new path is: c:\user\jdev10.1.3.4,
so everything should change to: c:\user\jdev10.1.3.4
Comments