Skip to main content

ADF Fusion web application

Hi, All welcome to the adf make easy in this series of tutorial I happly starting the first part which I have entitled as Basic.
In this post ! we will learn how to make first ADF fusion web application from the scratch.I am currently using Oracle 12c jdeveloper 12.1.3.0.0  so all application we be the compatible with this version and above as well.

we can easily check our version Of  Oracle jdeveloper in "HELP: menu In "about" section above window will appear.
Help > about
For creation of Fusion web application Goto File -> form Gallery 
then search for the ADF fusion web application then select and press OK .



New window will appear for the basic configuration of the application .
1.First enter the web application name Application name follow the convention of java classes ,it should not contain any space.
2.Enter the location in directory for the web application other wise it will take the default path of your C drive.
3.Enter Application package prefix. for the entire application that prefix will be lead by the model and view controller .
4. Press ok .

Congratulation You have created your first web application.

Comments

Popular posts from this blog

Connection in ADF Fusion web application

Hi, All welcome to the adf make easy in this series of tutorial this is the second tutorial of Part Basic In this post ! we will learn how to make Connection in ADF Fusion web application First go to File Menu Form Gallery In right section of the windows select the all items then select the Database connection in left hand window  Create database connection dialogue window will open Fill the following details:- 1.Connection name :- This will we name of your connection which will appear in our application resources . 2.User Name :- Database user name will come here 3.Password :- Respective password will comer here 4.Connection type :- Data base connection type will come here like mysql ,mongodb oracle etc i am using oracle here so i will choose.oracle jdbc. 5.host name :- here the ip of this connection will come in my case i am making the Local host connection 6.SID :- Service Id of your database host. 7.Then test if this become success then press ok . W...