java ee6 and jboss as6 what s coming
play

Java EE6 and JBoss AS6 What's coming? Jason T. Greene JBoss, a - PowerPoint PPT Presentation

Java EE6 and JBoss AS6 What's coming? Jason T. Greene JBoss, a Division of Red Hat 1 Monday, March 16, 2009 About The Speaker Lead of the JBoss Application Server project Member of JSR-316 EG (Java EE6 Spec) Member of JSR-299 EG (CDI [Web


  1. Java EE6 and JBoss AS6 What's coming? Jason T. Greene JBoss, a Division of Red Hat 1 Monday, March 16, 2009

  2. About The Speaker Lead of the JBoss Application Server project Member of JSR-316 EG (Java EE6 Spec) Member of JSR-299 EG (CDI [Web Beans]) http://in.relation.to/Bloggers/Jason 2 Monday, March 16, 2009

  3. Primary Goals of EE6 Extensibility Allow more components to be standalone (EJB3.1) Profiles Allow different subsets of JCP specifications Web Profile being the first New Additions Contextual Dependency Injection (Web Beans) Bean Validation JAX-RS 3 Monday, March 16, 2009

  4. Notable Updates Servlet 3.0 JSR-250 - Common Annotations (Finally) Async Support EJB 3.1 Singleton Component / Custom Concurrency JPA 2.0 Type-safe Criteria API JSF 2.0 AJAX Support 4 Monday, March 16, 2009

  5. Web Profile Contents Data Persistence JPA 2.0 JTA Component Framework EJB Lite 3.1 Web Beans (TBD) Presentation JSF 2 Servlet 3 5 Monday, March 16, 2009

  6. EJB 3.1 Embeddable / Standalone Usage New Singleton Session Bean Custom Concurrency WAR based deployments EJB-Lite Asynchronous Methods Global/Portable JNDI names 6 Monday, March 16, 2009

  7. Singleton Session Bean @Startup @Singleton public class SharedBean implements Shared { private int count; @PostConstruct void init() { count = 5; } @Lock(READ) public int getCount() { return count; } @Lock(WRITE) public int incrementCount() { return ++count; } } 7 Monday, March 16, 2009

  8. JPA 2.0 Access Modes (field, property, etc) Orphan Removal Type-Safe Criteria Ordered Lists Locking API Cache API Integration with Bean Validation 8 Monday, March 16, 2009

  9. Type-safe Query: Meta-model Generated from model using tooling public class Item_ { public static Attribute<Item, Long> id; public static Attribute<Item, Boolean> shipped; public static Attribute<Item, String> name; public static Attribute<Item, BigDecimal> price; public static Map<Item, String, Object> photos; public static Attribute<Item, Order> order; public static Attribute<Item, Product> product; } 9 Monday, March 16, 2009

  10. Type-safe Query: Example SELECT c.name FROM Customer c JOIN c.orders o JOIN o.items i WHERE i.product.productType = 'printer' EntityManager em; QueryBuilder qb = em.getQueryBuilder(); Query q = qb.create() Root<Customer> cust = q.addRoot(Customer.class); Path<Order, Item> item = cust.join( Customer_.orders ).join( Order_.items ); q.select(cust.get( Customer_.name )) .where( qb.equal( item.get(Item_.product).get(Product_.productType), "printer") ); 10 Monday, March 16, 2009

  11. Common Validation Points Each tier can/should be validated But, what happens when all use the same model? 5 11 Monday, March 16, 2009

  12. Problems with current approach Duplication multiple declarations of the same constraint code duplication risk of inconsistency Multiple runtime checking not all constraints can be expressed by all engines slightly different semantic? 12 Monday, March 16, 2009

  13. JSR-303 Saves the day! Uniform way to express a constraint everybody speaks the same language based on the domain model (JavaBeans) Standard way to validate constraints one runtime engine same validation implementations shared Bridge for constraints out of Java land API to access the constraint repository 13 Monday, March 16, 2009

  14. Built-in Constraints But you can write your own! In for sure Maybe @NotNull / @Null @Pattern @Size @Like @AssertTrue / @AlphaNumerical @AssertFalse @Email @Past / @Future @Min / @Max @Digits 14 Monday, March 16, 2009

  15. Simple Example public class Address { @NotNull @Size(max=30, message="longer than {max} characters") private String street1; private String street2; ... } 15 Monday, March 16, 2009

  16. JSR-299 JCDI (Web Beans) Injection for simple JavaBeans and EJBs Binding types Deployment types Scopes / Contexts Producers Interceptors & Decorators Stereotypes EL 16 Monday, March 16, 2009

  17. Binding Types @PayByCheque public class ChequePaymentProcessor implements PaymentProcessor { public void process(Payment payment) { ... } } @PayByCreditCard public class CreditCardPaymentProcessor implements PaymentProcessor { public void process(Payment payment) { ... } } @PayByCheque PaymentProcessor chequeProcessor; @PayByCreditCard PaymentProcessor creditCardProcessor; 17 Monday, March 16, 2009

  18. Deployment Types @DeploymentType public @interface Mock {} @Mock public class MockPaymentProcessor implements PaymentProcessor {...} <Deploy> <test:Mock/> </Deploy> @Current PaymentProcessor processor 18 Monday, March 16, 2009

  19. Scopes Injectable bean instances are tied to a contextual lifespan, or scope . Several pre-defined scopes Request Session Conversation Application 19 Monday, March 16, 2009

  20. Scope Example @RequestScoped public class Credentials {...} @SessionScoped public class ShoppingCart {...} @ConversationScoped public class Order {...} @ApplicationScoped public class Catalog {...} 20 Monday, March 16, 2009

  21. Producers Programatic control of instance creation @Produces public PaymentStrategy getPaymentStrategy() { swtich (paymentStrategy) { case CREDIT_CARD: return new CreditCardPaymentStrategy(); case CHEQUE: return new ChequePaymentStrategy(); case PAYPAL: return new PayPalPaymentStrategy(); default: return null; } } @Produces public PaymentProcessor getPaymentProcessor( @Synchronous PaymentProcessor sync, @Asynchronous PaymentProcessor async) { return isSynchronous() ? sync : async; } 21 Monday, March 16, 2009

  22. Decorators Like interceptors but type-safe @Decorator public abstract class LargeWithdrawDecorator implements Account { @Decorates Account account; public void withdraw(BigDecimal amount) { account.withdraw(amount); if ( amount.compareTo(LARGE_AMOUNT)>0 ) { Audit.alert(account, “Large Withdraw”); } } } 22 Monday, March 16, 2009

  23. Stereotypes Essentially meta-annotation macros @Named @RequestScoped @Stereotype @Target({TYPE, METHOD}) @Retention(RUNTIME) public @interface Model {} @Named @Model @RequestScoped public class JSFBean {} public class JSFBean {} 23 Monday, March 16, 2009

  24. EL Integration <h:dataTable value="#{cart.lineItems}" var="item"> .... </h:dataTable> @SessionScoped @Named("cart") public class ShoppingCart { ... } 24 Monday, March 16, 2009

  25. JBoss AS6 Plans EE6 Compliance Improved OSGi support Embedded & “out of container” usage High-performance messaging rewrite (JBM2) Faster remoting implementation (R3) Very flexible profiles 25 Monday, March 16, 2009

  26. Where to go from here JBoss.ORG (www.jboss.org) JSR-316 EE6 Spec http://www.jcp.org/en/jsr/detail?id=316 JSR-303 BV Spec http://www.jcp.org/en/jsr/detail?id=303 JSR-299 JCDI (Web Beans) Spec & RI (with docs) http://www.jcp.org/en/jsr/detail?id=299 http://in.relation.to/Bloggers/ FirstBetaOfWebBeansAvailable 26 Monday, March 16, 2009

  27. Questions? Q & A 27 Monday, March 16, 2009

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend