Hands on lab materiels on using JDeveloper for building and managing enterprise grade applications
In this post I'm sharing some hands on lab materials on JDeveloper IDE which may help you to understand offerings from JDeveloper for building and managing large scale enterprise grade Java EE applications.
Wish you all a great year ahead, have fun!
- How to use JDeveloper for building JavaEE applications along with Maven?https://github.com/jobinesh/share/blob/master/1.HOL_JavaEE_JDev.do
- How to use SVN from JDeveloper for versioning application source?https://github.com/jobinesh/share/blob/master/2.HOL_SvnOnJDev.doc
- How to install and use Maven synchronization plugin that comes with JDeveloper?https://github.com/jobinesh/share/blob/master/3.HOL_MavenSynchPlugin.doc
- How to build and publish Weblogic shared library using JDeveloper?https://github.com/jobinesh/share/blob/master/4.HOL_SharedLibrary.doc
Wish you all a great year ahead, have fun!
I have a problem like this.
ReplyDeleteI have three table :
1 - Country : CountryID (pk), CountryName.
2 - Province : ProvinceID (pk), ProvinceName, CountryID (fk).
3 - Employee: EmployeeID, EmployeeName, Email, ProvinceID (fk).
Now i want insert a new row into Employee table with form :
------------------------------------------------------------------------------------
EmployeeID : ............
EmployeeName: ...........
Email: ...........
Country:
Province:
------------------------------------------------------------------------------------
The thing is when choice Country ---> Province will show.
If selected US : Texas, Califolia..
or if selected England: Mancity, Liverpool....
we just insert ProvinceID into Employee table not CountryID at all.
I was try do this by created new View object from three table but it's not working.
Thank you.
ReplyDelete