• 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
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

Specs-Objectives mapping

 
Ranch Hand
Posts: 70
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I apologise if the question was already posted:
Does anyone has written a map between ejb specification's paragraphs and exam objectives?
It could help us preparing the exam and in the last minute review.
Thanks
 
Greenhorn
Posts: 29
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
not to my knowledge, but I think it's pretty straightforward!
But remember, especially Transactions and Exceptions are involved everywhere!
Hope it helps!
/Erik
 
Author & Gold Digger
Posts: 7617
6
IntelliJ IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have done that (to some extent) and I'll be posting my "mapping" tomorrow.
As Erik mentioned, the mapping is pretty straightforward and doing it by yourself is a very good exercise as it makes you skim through the spec and learn it already
 
Fabrizio Gianneschi
Ranch Hand
Posts: 70
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, I'll wait your post then!
We could discuss it later...
Thanks,
 
Greenhorn
Posts: 18
IntelliJ IDE Firefox Browser Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It is already the day after tommorow Valentin Crettaz, and you haven't posted your mapping yet?
Did you forget?
 
Valentin Crettaz
Author & Gold Digger
Posts: 7617
6
IntelliJ IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I haven't forgotten. It just so happened I had a tremendous amount of things to do yesterday
Anyway, please find below my "mapping". Please note that in order to learn correctly you should still read the entire spec so as to gain an overall view of the whole thing
1. EJB Overview
1.1 -> 1.2, 2.1, 2.3
1.2 -> 24.2
1.3 -> 24.1.2
1.4 -> 25 + *'s responsibilities sections all over the spec
1.5 -> 23.3
2. Client View of a Session Bean
2.1 -> 6.2.1, 6.3
2.2 -> 6.5
3. Session Bean Component Contract
3.1 -> 7.4, 7.5.1, 7.5.5, 7.9.1
3.2 -> 7.4.1, 7.7.5
3.3 -> 7.5.1, 7.5.2, 7.5.3
3.4 -> 7.6, 7.7, 7.8, 7.9
3.5 -> 7.10, 7.11
3.6 -> 7.10.2, 7.10.5, 7.10.6, 7.10.3, 7.10.4, 7.10.7, 7.10.8
4. Session Bean Lifecycle
4.1 -> 7.6, 7.8
4.2 -> 7.6.1, 7.8.2
4.3 -> 7.6.3
5. Client View of an Entity
5.1 -> 9.5, 9.6, 9.4.1
5.2 -> 9.10
5.3 -> 9.9
5.4 -> 9.5, 9.6
6. Component Contract for Container-managed Persistence (CMP)
6.1 -> 10.3, 10.3.1
6.2 -> 10.3.2, 10.3.4
6.3 -> 10.3.6, 10.3.7, 10.3.8
6.4 -> 10.3.13
6.5 -> 10.3.13
6.6 -> 10.6
7. CMP Entity Bean Lifecycle
7.1 -> 10.5
7.2 -> 10.5.2, 10.6
7.3 -> 10.5.3, 10.7
8. Entity Beans
8.1 -> 10.5.4
8.2 -> 10.8, 10.3.5
9. EJB-QL
9.1 -> 11.2.6, 11.2.7, 11.2.8
9.2 -> 11.3
9.3 -> 11.2.7.5, 11.2.7.7, 11.2.7.8, 11.2.7.9, 11.2.7.10, 11.2.7.11
10. Message-Driven Bean Component Contract
10.1 -> 15.3, 15.5
10.2 -> 15.4
10.3 -> 15.4.3
10.4 -> 15.7, 15.8
11. Transactions
11.1 -> 17.2, 17.3.1, 17.3.3, 17.3.4
11.2 -> 17.4, 17.7.4
11.3 -> 17.4.1, 17.6.2, 17.6.3
11.4 -> 17.6.1, 17.6.2, 17.6.3
12. Exceptions
12.1 -> 18
12.2 -> 18.2, 18.3
12.3 -> 18.2, 18.3.1, 18.3.2, 18.4
12.4 -> 18.2, 18.3
12.5 -> 18.4
13. Entreprise Bean Environment
13.1 -> 20.2
13.2 -> 20.2, 20.3, 20.4
13.3 -> 20.2, 20.3, 20.4, 20.5
14. Security Management
14.1 -> 21.2.5.3, 21.3.1, 21.3.2, 21.3.3, 21.4.2
14.2 -> 21.2, 21.3, 21.4, 21.6, 21.7, 22.1, 22.2, 22.3, 22.4
14.3 -> 21.2.5
14.4 -> 21.2.5.3, 21.3, 21.4.2, 21.4.3, 22.3
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi everyone.
I am studying to take the exam next month.
I have read the whole specification once. Now, I intend to study only the chapters specified in this mapping.
Is it a good strategy?
 
Valentin Crettaz
Author & Gold Digger
Posts: 7617
6
IntelliJ IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Now, I intend to study only the chapters specified in this mapping.
Is it a good strategy?

Only if my mapping is exhaustive
 
Ranch Hand
Posts: 114
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Valentin,

This would be great help ...
 
Valentin Crettaz
Author & Gold Digger
Posts: 7617
6
IntelliJ IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
note that you can get the latest version from here
 
What's wrong? Where are you going? Stop! Read this tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic