Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Cannot access java class from jar file

user13094652Jan 6 2016 — edited Jan 9 2016

Dear All,

I have embedded a jar file in my web fusion project . The jar file contains a class called UtilsJar.java and in my my web fusion project I have a manage bean which is called ManageBeanA and it extends UtilsJar.java. I can access all the methods of UtilsJar.java from ManageBeanA.java class. Since ManageBeanA extends UtilsJar.java, I would expect that in my jsff file I can access any methods from UtilsJar.java, but it is not the case.

When I add the button below in my jsff file, the methods defined in UtilsJar.java that is  ShowSavePopup and btnSave   cannot be found in my jsff file:

  <af:button disabled="#{!bindings.Commit.enabled}

                                   icon="#{resource['images:Save.png']}" id="b11" text="#{res.SAVE}"

                                   actionListener="#{ManageBeanA.ShowSavePopup}" binding="#{ManageBeanA.btnSave}"/>

Please note that ManageBeanA is defined as request scope in my taskflow.


Any idea why I am not able to access those methods from UtilsJar.java please?


I am using Jdeveloper 12.1.3..0.0


Thanks im advance for any help.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 6 2016
Added on Jan 6 2016
3 comments
611 views