• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Devaka Cooray
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Jeanne Boyarsky
  • Tim Cooke
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
Bartenders:

Question in Mikalai Zaikin's SCBCD Guide

 
Ranch Hand
Posts: 38
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Do you know what does the statement in http://java.boot.by/bcd-guide/ch01s03.html mean?


"The enterprise bean must not attempt to define a class in a package."
(The second last)

Thanks.

Brenda
 
Saloon Keeper
Posts: 3877
43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Brenda Kwok:
Do you know what does the statement in http://java.boot.by/bcd-guide/ch01s03.html mean?


"The enterprise bean must not attempt to define a class in a package."
(The second last)

Thanks.

Brenda



Hi Brenda!

This is a restriction to use the method of ClassLoader :

, int, int)]http://java.sun.com/j2se/1.4.2/docs/api/java/lang/ClassLoader.html#defineClass(java.lang.String, byte[], int, int)

which is consistent with other restrictions about using a class loader in your EJBs. The EJB Container is responsible for maintaining runtime environment, and it loads classes itself, applying security restrictions. If you violate these rules, the runtime environment will not be compliant.

This restriction is not about prohibiting to use packages for your EJB classes.

regards,
MZ
 
Brenda Kwok
Ranch Hand
Posts: 38
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you!

It does not mean defining general Java class.
 
Mikalai Zaikin
Saloon Keeper
Posts: 3877
43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You're right - this is only a restriction for developer to use ClassLoader from EJB.

regards,
MZ
 
I child proofed my house but they still get in. Distract them with this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic