Skip to Content
Author's profile photo Former Member

JavaBean Model Import: when it really works

Preface

There is a plenty of topics on SDN Web Dynpro Java, where developers complain about inability to use JavaBean model import. It stops working magically; it does not see beans from public parts; it starts malfunction after minimal changes introduced in bean etc.

As far as I’m intensively promote using models with WebDynpro programming, making it work becomes a very interesting topic for me. Moreover, in (A)POJO – (Almost)Plain Old Java Objects as model of my first articles I did not explain in details how to use it in NW04 SP10-13 and left incorrect guidelines.

My distribution of NetWeaver contains sources of necessary plugins so I can look what happen behind the scenes. Also I start Eclipse in console mode (remember this “trick”) and a lot of mysterious things come obvious. Sadly, for some reason developers of related plugins prefer to use System.out rather then Eclipse logging.

To manifest or not to manifest

The first thing found may surprise you if you ever try to resolve importing issue: JavaBeans acceptable by import wizard may but not ought to have corresponding JAR manifest entries. I.e. according to JAR manifest file specification it is possible to mark certain classes as JavaBean via the following sections:

Name: com/mycompany/myproject/mymodule/MyBean.class Java-Bean: true

I saw Re: WebDynpro Using JavaBean Model ->Please Help on WebDynpro forum and reproduce it in (A)POJO – (Almost)Plain Old Java Objects as model that having these entries is mandatory. This is not true. Actually, if you mark class as JavaBean it is just automatically pre-selected via import wizard. No more, no less. Moreover, if you in fact create such entries in manifest for all classes in public part, you will be unable to use import wizard due to one pesky bug. So, if you declare as JavaBeans in manifest all classes from public part, create at least one public empty class and add it to public part.

Class loading…

Second source of problems is type of properties (i.e. return type of getters, single argument type of setters). Let me explain this by example.

  1. Create a Java DC (A) with one single bean.
  2. Add “jms” to Used DCs of A.
  3. In your bean create property (along with getter / setter) of type javax.jms.Queue.
  4. Add this bean to public part and build DC.
  5. Create WebDynpro DC (B).
  6. Use public part of DC A in DC B.
  7. Start to import JavaBean model.
  8. Select public part as JavaBeans source.

Oops! No JavaBeans available for import! How this happens? Look at console (we start Eclipse in console mode for troubleshooting, aren’t we? ;). You see that javax.jms.Queue mentioned in stack trace. Yep, this is the root of problem.

When import plugin scans for properties it hits unknown class. Obviously, this hardly could be claimed as bug – the only class path available to plugin contains of a) core (system) Java classes; b) current project; and c) public part JAR. And no one has javax.jms.Queue declaration.

The solution is obvious: just add “jms” to Used DCs of B (WebDynpro DC), reload project (restart IDE as option of last resort), and re-start import wizard.

Conclusion

This is all known to me issues with JavaBean model import wizard. If you come around any new one, please feel free to left comments to this post, or… welcome to SDN Web Dynpro Java 🙂

Next time I will explain how to alter DC build process to let you include your own manifest entries in generated public part JAR.

Assigned Tags

      4 Comments
      You must be Logged on to comment or reply to a post.
      Author's profile photo Former Member
      Former Member
      It would be good if you explain how to do this things. I know you but you should explain how to do it.
      Regards
      Author's profile photo Former Member
      Former Member
      3Q very much!!! you are so great!!!!!!! This post help me solve a big problem !!!
      3Q 3Q 3Q 3Q 3Q 3Q 3Q 3Q !!!!
      Author's profile photo Former Member
      Former Member
      Valery,

      You are right.I realized very late !!

      Thanks,Anilkumar

      Author's profile photo Former Member
      Former Member
      Hi Valery Silaev,

      I’m facing a strange behaviour, and perhaps you can enlight me.

      1. Created a Java DC (A) with one single bean (two properties ID and Name of type short and String);
      2. Added ejb20 to Used DCs of A;
      3. Created two Public Parts (Assembly and Compiling) and added the bean to both;
      4. Created Web Dynpro DC (B);
      5. Added ejb20, Assembly and Compiling Public Parts of Bean to Used DCs of B;
      6. Started to import JavaBean Model;
      7. Selected “Public Part of Used DCs”;

      Oops! No jar of DC A is available in the list, others jar files appear like ejb20, jdbc, logging, opensql, …, but not the jar files of DC A.

      I started the SapIde in console mode (sapide.exe -consolelog), but nothing is written after selecting “Public Part of Used DCs” and click “Next”.

      Any ideas will be appreciated.

      Thanks
      John