When can we expect Core Java EE Patterns from SUN / Oracle, as we already have for J2EE?

Just like we have www.corej2eepatterns.com for J2EE, when can we expect any resource (book) on templates for Java EE 5/6?

+4
source share
2 answers

This book is for you then: " " Real World Java EE Patterns - Rethinking Best Practices "

This pragmatic book offers real world knowledge and the code needed to develop a lean, yet repairable Java EE 5/6 application. Real World Java EE Templates - Rethinking the Best Practice guides you towards efficient models and best practices in a structured way, with real world code. This book includes:

  • An Introduction to Java EE 6 Fundamentals and APIs (EJB, JPA, JMS, JCA, JTA, Dependency Injection, Convention Configuration, Interceptors, REST)
  • Transactional principles, isolation levels, remediation in the context of Java EE 6
  • Mapping core J2EE templates in Java EE
  • Discussion of redundant models and obsolete best practices like DAOs, business delegates, data transfer objects, extensive bundles, etc.
  • Service-level templates for domain-oriented and service-oriented architectures
  • Templates for integrating asynchronous, obsolete, or incompatible resources
  • Infrastructure templates for launching services, flow tracking, preliminary condition checks, Java EE 6 search or integration third-party dependency injection frameworks such as Guice
  • Tips for Effective Documentation and Testing
  • EJB 2 - Migration of EJB 3.X
    1. Lean and pragmatic domain-based services and architectures based on discussed patterns
    2. Fully functional implementation of the Java Connector Architecture (JCA) with source code
+3
source

In fact, you can apply these templates to Java EE or to any other collection of corporate frameworks. J2EE templates , as you mentioned, are best practices for developing enterprise applications. In general, they are independent of specific frameworks, such as GoF templates, independent of a specific OO language. So, like GoF templates, agnostic language, corporate templates are object-oriented.

0
source

Source: https://habr.com/ru/post/1309737/


All Articles