Giter Site home page Giter Site logo

mpuening / learn-jakartaee Goto Github PK

View Code? Open in Web Editor NEW
3.0 2.0 3.0 618 KB

Learn various Jakarta EE APIs

License: Apache License 2.0

Java 86.96% HTML 12.13% CSS 0.05% Dockerfile 0.86%
jakartaee jakartaee8 jakartaee9 arquillian ejb openliberty tomee wildfly glassfish hikaricp

learn-jakartaee's Introduction

Learn Jakarta EE APIs

Continuous Integration

This project is about learning the Jakarta EE APIs (i.e. Java development without Spring Boot).

Here is the main web site for Jakarta EE. The specifications can be found here.

The projects in this repository focus on different areas, and some take inspiration from the Open Liberty Guides.

If you are looking for examples of Jakarta EE 8, click here.

Currently, this project is at Jakarta EE 10 (milestone) specification. TomEE is not complete yet. One feature I am waiting for is updated JSP taglib name spaces (jakarta.tags.core).

Note There are Maven Archetypes of some of these projects available at https://github.com/mpuening/maven-archetypes

So what is in this project?

Here are the sub projects as shown in this (To-Be) deployment diagram:

alt text

Web Application Projects

This project contains simple Servlet and JSP app. It is just a simple demo of a servlet that supports GET and POST.

This project is an Apache Struts 1.3 application. Even though Apache Struts is no longer active, it is amazing to me how capable it still is to creating a web application (except for the security risks). This application features:

  1. EJB back-end (See learn-jakartaee-ejb)
  2. XDoclet Generated Struts Configuration
  3. Tiles Layout with navigation bar and side menus using Twitter Bootstrap CSS
  4. Apache Validation (Validator) Rules

This project is similar to the Struts application, except that it uses Jakarta Server Faces. Likewise, it features:

  1. EJB back-end (See learn-jakartaee-ejb)
  2. Authentication and URL Authorization
  3. Layout with navigation bar and side menus using Twitter Bootstrap CSS
  4. JSF Form Validation

Jakarta MVC is technically not part of the specification. It seems only GlassFish comes out of the box ready to run a MVC project. There is the krazos implementation, but I could not get it to work across all the application servers. So I decided to side with how MVC will look when (if?) it does become part of the specification.

I did not want to include an example application that uses Spring, but in a conversation with someone about these examples, this person seemed to forget that much of Spring relies on the Jakarta EE APIs, and still how easy it is to configure an application without Spring Boot. The AppInitializer is discovered by the SpringServletContainerInitializer which itself is an instance of ServletContainerInitializer which is part of the Jakarta EE API. It's actually quite simple.

Web Service Projects

This Microprofile 5 project is a super simple REST API containing just a ping service. But at least it shows how Swagger UI is built-in to Open Liberty.

This project implements a SOAP-based Web Service. It uses a WSDL-first philosphy and includes a projects to creates the stubs that is used in server and client project.

EJB Projects

This project is an EJB JAR project. It has an EJB that uses JPA to access data in a database.

EAR Projects

This project is intended to eventually contain the above web projects. As is, it only currently contains the learn-jakartaee-spring project.

Utility Projects

This project is a simple web app used in the EAR project. Its index.html file contains links to the other applications in the EAR file.

This project contains the an Environment class that is able to read properties from files on the classpath. It has support for profiles and evaluating expressions using values from environment variables and system properties.

This project contains the credential validators. It contains a validator for testing purposes and another one for LDAP support. There is also a chain version that encapsulates the others and uses the correct one based on configuration.

This project contains the database drivers along with an implementation of the Hikari Connection Pool that can be configured via environment variables or system properties. The named of the DataSource is SpelConfiguredDataSource and is used in the projects that use a database.

With the release of Jakarta EE 9, there will be old frameworks, such as Struts, that no longer work on the modern app servers. However, the Eclipse Transformer can breathe new life into old frameworks. The projects under the learn-jakarta-legacy-support folder address old frameworks to make a version that is compatible with modern application servers. Each project is fairly straightforward. An old JAR file is unzipped, then the Eclipse Transformer is run to create a jakarta classifier version of the JAR file that uses the new name space. Only a simple pom.xml is needed per dependency. No new Java code is needed.

I chose to use Apache TomEE/OpenEJB embedded server for the test cases. NO app server installation or remote test cases needed. There are three sub-projects. The first is the simplest for EJBs which just uses OpenEJB. The two other are used for micro-profile and web profile projects. These projects clean up old dependencies and add additional support forEmbedded TomEE that is not included by default, for example security and micro-profile support.

Playground Projects

This project was used to better understand the differences between Spring and CDI Dependency Injection. One can imagine the controller/service/repository design pattern, so how is it implemented in both Spring and CDI.

Building

This is a straight-forward maven project. Just run this command:

mvn clean install

or

./mvnw clean install

The install phase is needed because the legacy projects need to install classified builds in order to be used by the other projects.

Running

See the README.md files in each project for more details.

Is the age of the App Server over?

The idea of the app server is good. Developers write code to a well defined specification and can hand the application to an operations team to be deployed. It was supposed to be a very smooth and easy process. Of course, we all know that is not what happened. In reality, app server vendors interpreted the specification differently and/or added non-standard features that essentially made every app server have a personality of their own.

At one time, all Java developers knew about BEA WebLogic, JBoss, and IBM WebSphere and more. And then this framework called Spring came along. It had a different take on web development. At first, it was friendly with app servers. Then developers realized that they could get away just running with a simple servlet container like Tomcat. And when Spring Boot came along with embedded Tomcat, the classic app servers became slow moving dinosaurs.

Again, the idea of the aoo server is good. Except as I write this today, the specification that developers use is the Docker Container. And the operations team run Kubernetes clusters. No one speaks of WebLogic, JBoss, or WebSphere anymore. So, is the age of the app server over? Not if you consider the Docker solution. Is the age of the Java app server over? I would say yes. I don't know anyone who uses them anymore.

But I am excited about the future of Jakarta EE. I look forward to how Java records are incorporated into specifications such as JPA. Also, how will Project Loom affect JAX-RS and the Servlet API? It is these changes why I wanted this project.

Running and Testing Jakarta EE Applications

When app servers became widespread, the notion of continuous unit testing was not as widespread. And it is no secret that the Jakarta EE specifications did not have testing front and center when designed. And still today, unit testing Jakarta EE code is not trivial as I think it should be. And I did want this project to have unit testing. I have heard of the Arqullian project for a long time now, but never had a project to use it on till this project. But wow! Setting up unit test cases was not easy. Arquillian advertises itself as an easy way to write test cases, but I had all sorts of problems. Sure I found many examples that tested "Hello World" apps, but when I set up my apps with that configuration, problems came up. But I persevered and conquered all the problems I faced. For example, I have an app that uses a TLD file. Even today, Arquillian ships with a dependency on xerces.... Xerces? really? Ok, delete. And then I had all sorts of problems with the MyFaces implementation that TomEE Arquillian project comes with. Despite a lot of time I invested trying to make my test cases work with MyFaces, in the end I just deleted the its implementation and inserted the Mojarra implementation. I still wonder what I am doing wrong if anything at all. When I google errors, I often get results from 10+ years ago or it tells me "It looks like there aren't many great matches for your search." Wow. This tells me not many people are deveoping Jakarta EE apps with Arquillian.

For each of my projects I wanted to an easy way to start the app and run test cases. I most certainly did not want anyone to separately download, run, and set up an app server. A simple maven command should build and run the applications. Developers should be able to import this project into their favorite IDE and run test cases. To run the web applications, one can choose on of the following commands:

mvn -P liberty liberty:run
mvn -P wildfly cargo:run
mvn -P glassfish cargo:run
mvn -P tomee tomee:run

The various maven plugins (liberty, cargo, tomee) are used to perform the download of the app server and then deploy the apps. The maven plugin configuration is all included in the parent pom.xml file.

Running the test cases is almost just as easy. Again, no separate app server is required to be used. The test cases use TomEE as the embedded app server. So it is really easy to debug code. The only trick (at least within Eclipse) is to set these VM arguments:

--add-opens java.base/java.lang=ALL-UNNAMED
--add-opens=java.base/java.io=ALL-UNNAMED
--add-opens=java.rmi/sun.rmi.transport=ALL-UNNAMED

I'll continue to investigate module settings. I am not well versed with the Java module system yet.

TODO

Ideas

  • learn-jakartaer-ldap-server
  • learn-jakartaee-auth-server
  • learn-jakartaee-mvc
  • learn-jakartaee-jms
  • YAML Config
  • Apache DeltaSpike
  • Logging

Learn from

learn-jakartaee's People

Contributors

mpuening avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.