About author  I am Java/oracle professional.Working on Java/J2EE technologies and i.e Java,J2ee,Oracle ADF,hibernate,J2ee,PL/sql,Apps for 4+ years.I am passionate about learning new technologies.I am sharing my knowledge. Give your views and suggestion on vinay@techartifact.com http://www.linkedin.com/in/vinaykumar2 Read more from this author


Recently I faced an issue in Adf application. The .jspx page giving null pointer exception after doing some operation in page. And every variable have contain their value. I have try to run application many time in debug mode to replicate the problem but not able to find. Then I find in ADF application when ever You make any Input or Output text in jspx. page it automatically make validator. af:validator is automatically generated when you create a form component. You can check that validator by clicking the Source button. Solution of the problem is – to comment the validator part in xml part.
You will find error in ADF class like this.

java.lang.NullPointerException
at oracle.jbo.uicli.binding.JUCtrlValueBinding.validateAttributeValue(JUCtrlValueBinding.java:757)

For Solution you should go to seach option and Search for af:validator in full application.Where you can find this tag. Make it comment like example I have given below.

null1

After applying the solution application doesn’t give Null pointer exception

Leave a Reply