Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Security and management improvements in Red Hat JBoss Enterprise Application Platform 7.4 Beta

<p>&nbsp;</p> <quillbot-extension-portal></quillbot-extension-portal>

March 30, 2021
James Falkner
Related topics:
DevOpsJavaSecurity
Related products:
Red Hat JBoss Enterprise Application Platform

    The Beta release of Red Hat JBoss Enterprise Application Platform 7.4 is now available. This release has been made in preparation for the general availability (GA) release later in 2021, and contains a number of new features and enhancements. This article offers a summary of the most important improvements and illustrates an easy way to get started with JBoss EAP.

    What's new

    JBoss EAP 7.4 Beta continues the evolution of Enterprise Application Platform and its support for the Java and Jakarta EE platforms. The 7.4 release, being part of the JBoss Enterprise Application Platform 7.x family, continues backward compatibility with earlier 7.x releases, and is supported across a range of operating systems, hardware platforms, and Red Hat OpenShift. Built on the upstream Wildfly project, JBoss EAP gives enterprise customers a solid, flexible, and high-performing platform on which to deploy mission-critical Java applications.

    JBoss EAP 7.4 Beta includes new enhancements in security, server management, developer features, and more.

    Security

    These new features make it easier to manage access to your instances and integrate your applications with other parts of the open source ecosystem.

    • Elytron can update credentials automatically in other subsystems. The credential-reference attribute automatically picks up and propagates new credentials.
    • TLS 1.3 is supported when on Java 11, although it is disabled by default.
    • You can connect to a remote Git repository with your SSH credentials to manage server configuration, properties files, and deployments. This enables easy configuration change management in a DevOps-friendly source repository. The following video demonstrates this new capability:
    • For testing and training, the platform generates self-signed certificates automatically for Undertow HTTP listeners. This feature purposely bypasses good security practices, and therefore should not be used in production.
    • Distributed security realms enable the sharing of identities across realms.
    • RESTEasy clients are integrated with Elytron, enabling these clients access to credentials and SSL configurations.

    In addition, a number of important CVE security fixes were delivered in JBoss EAP 7.4 Beta and will be part of the GA release as well. Consult the release notes for the full list.

    Server management

    These new features help reduce errors and give you more information about configuration and your running instances.

    • Global directories make it easier to distribute shared libraries, saving time and reducing work after you make library changes.
    • Read-only configuration directories reduce configuration drift and are more compatible with immutable deployments, such as on OpenShift.
    • Runtime statistics are maintained for managed executor services, reporting active threads, completed tasks, hung threads, maximum threads that can be used, and more.

    Developer features

    These new features add valuable functionality to applications.

    • There are several enhancements to EJB, including timeout configuration and automatic bean discovery over HTTP.
    • Active MQ topics can be paused temporarily.

    Supported platforms

    As always, the list of supported platforms continues to evolve. In release 7.4, several platforms and features have been deprecated due to high maintenance cost, low community interest, and the presence of better alternatives. For the full list of new, changed, or deprecated platforms and features, please refer to the release notes.

    Test driving a sample app

    In this section, we'll deploy JBoss EAP through OpenShift Source-to-Image (S2I) images. To run the example you'll need to log in to an OpenShift 4.x cluster that has access to registry.redhat.io. You must also be able to use the oc command line. Follow these steps:

    1. Create a new project to house the app:
      $ oc new-project eap-demo
      
    2. Import the ImageStream definitions for JBoss EAP 7.4 Beta on OpenJDK 11 (this requires cluster-admin privileges):
      $ oc replace --force -n openshift -f https://raw.githubusercontent.com/jboss-container-images/jboss-eap-openshift-templates/eap74-beta/eap74-beta-openjdk11-image-stream.json
      
    3. Import the Templates that define how apps are deployed (this requires cluster-admin privileges):
      $ oc replace --force -n openshift -f https://raw.githubusercontent.com/jboss-container-images/jboss-eap-openshift-templates/eap74-beta/templates/eap74-beta-basic-s2i.json
      
    4. Create the app from the template:
      $ oc new-app --template=eap74-beta-basic-s2i -p APPLICATION_NAME=eap-demo \
      -p EAP_IMAGE_NAME=jboss-eap74-beta-openjdk11-openshift:7.4.0.Beta \
      -p EAP_RUNTIME_IMAGE_NAME=jboss-eap74-beta-openjdk11-runtime-openshift:7.4.0.Beta \
      -p SOURCE_REPOSITORY_URL=https://github.com/jboss-developer/jboss-eap-quickstarts \
      -p SOURCE_REPOSITORY_REF=7.4.x \
      -p CONTEXT_DIR="helloworld-rs" \
      -l app.openshift.io/runtime=jboss
      
    5. Two builds will run in succession to build the app. You can check the status of the builds through:
      $ oc logs -f bc/eap-demo-build-artifacts && oc logs -f bc/eap-demo
    6. After both builds complete, watch the rollout with:
      $ oc rollout status -w dc/eap-demo
      

      The build and rollout will take some time to finish.

    7. Once the app is built and deployed, you will be able to see it in the OpenShift Console's Topology view, as shown in Figure 1.
      OpenShift Topology View with JBoss EAP Application
      OpenShift Topology View with JBoss EAP Application
      Figure 1: OpenShift Topology view with JBoss Enterprise Application Platform application
    8. Access the sample application by clicking on the small arrow to the upper right of the icon. This will display the sample RESTful application and confirm the successful deployment. Congratulations!

    JBoss Enterprise Application Platform resources

    You can find the JBoss Enterprise Application Platform 7.4 Beta documentation, including release notes, the Getting Started Guide, and several other guides on docs.redhat.com.
    Information about the development process for JBoss Enterprise Application Platform 7.4 Beta is available at:

    • Red Hat JBoss Enterprise Application Platform 7.4 Beta Release Notes
    • JBoss EAP Lifecycle notes
    Last updated: February 11, 2024

    Recent Posts

    • Red Hat Hardened Images: Top 5 benefits for software developers

    • How EvalHub manages two-layer Kubernetes control planes

    • Tekton joins the CNCF as an incubating project

    • Federated identity across the hybrid cloud using zero trust workload identity manager

    • Confidential virtual machine storage attack scenarios

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Chat Support

    Please log in with your Red Hat account to access chat support.