Skip to main content

SCEA 5 Step 1

I have prepared from the following materials

EJB in Action
GOF Design patterns
J2EE Design patterns
JEE 5 tutorial from Sun.com
JavaPassion.com (EJB, JAX-WS)

Real exam was different than what I've learned from the above books, SCEA 5 exam was challenging, its an Enterprise Architect Certification so the focus was on solving architectural problems (Scalability, Availability, Maintainability, Picking right technology, & Patterns)

So the above materials covered 60-70% of the objectives, rest of the questions I had to answer from my experience, and most of the answer choices were pretty close.

Example

However i can't post the real question so I'm providing this from my own

Question:
Pick the right technology for sending XML based reliable message to another system.
A: JMS
B: JAX-WS
C: RMI
D: Stateless bean

as you can see A, B, C are all correct i.e. we can send an XML message to another system reliably

My Advice:
However I would cross all those choice which doesn't seem appropriate for the given scenario, and most of the time you will be left with two close choices so what I would suggest is see previous and next question to identify the current context (i.e. are they focusing on JAX-WS or JMS) that will help you solve the question

I guess I've already hinted like how to prepare for this exam, here are few more points to remember
1. No need to remember code and syntax (I've spend some time remembering EJB, JMS, JAX-WS, TrAX annotations and api, waste of time)
2. No Design diagrams are asked (When preparing for patterns I've spend substantial time on design diagrams they are of no use for step 1)
3. Key is understand when to use (Stateless, Statefull, JMS, JAX-WS, Servlets, JSP, JSF etc) technologies
4. Understand which is the most appropriate technology to use for a given problem
5. Spend some time on the following concepts (Availability, Maintainability, Scalability etc)
6. Patterns ( I realized they mostly focus on most used patterns ) so spend more time on the famous one's.

Comments

Popular posts from this blog

Access multiple Databases in JPA

According to JPA specification we can define multiple "persistence-unit" elements (i.e. like below) in persistence.xml file and can easily refer them inside Dao layers as this. public class PolarDaoImpl {     @PersistenceContext(unitName="PolarPU")     protected EntityManager entityManager; -- } public class BearDaoImpl {     @PersistenceContext(unitName="BearPU")     protected EntityManager entityManager; -- } Checkout sample persistence.xml <?xml version="1.0" encoding="UTF-8"?> <persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">     <!-- Database 1 -->     <persistence-unit name="PolarPU" transaction-type="RESOURCE_LOCAL">        ...

JPA 2 new feature @ElementCollection explained

@ElementCollection is new annotation introduced in JPA 2.0, This will help us get rid of One-Many and Many-One shitty syntax. Example 1: Stores list of Strings in an Entity @Entity public class Users implements Serializable {     private static final long serialVersionUID = 1L;     @Id     @GeneratedValue(strategy = GenerationType.AUTO)     private Long id;     @ElementCollection     private List<String> certifications = new ArrayList <String> ();     public Long getId() {         return id;     }     public void setId(Long id) {         this.id = id;     }     public List <String> getCertifications() {         return certifications;     }     pub...
               Top 10 Apps missing in HP TouchPad Without these Apps my experience is only limited to browsing web pages, though WebOS is really better multitasking device than iOS but without commonly used Apps it's only limited. 1. Native YouTube App   - You can't just use finger to do everything on 60% YouTube.com                       2. Netflix - I love to do multitasking, with Netflix running and ability to do other stuff     3 Facebook - Most of the people always like to be connected all the time here   My Mistake Skype Video is working     4  Skype - Ability to do voice and video chat, and without this I need to keep my Mac on.   5 Google Talk - Ability to do voice, video chat...