Skip to main content

What is jEAP?

jEAP (Java Enterprise Application Platform) is a suite of Spring Boot libraries, Spring Boot starters and reusable microservice templates for building Java-based enterprise applications. It is published as open source under the Apache License 2.0 by the Federal Office of Information Technology, Systems and Telecommunication (FOITT/BIT) of the Swiss Confederation.

jEAP solves the recurring cross-functional concerns of enterprise applications — messaging, security, persistence, observability, encryption, and more — once and in a reusable way, so that application teams can focus on their business logic.

Core principles

Value proposition

Building on jEAP means the reusable, cross-functional aspects of an enterprise application are already solved, tested and maintained. Teams compose their service from building blocks and inherit a curated, version-aligned dependency tree instead of assembling and maintaining the plumbing themselves.

jEAP follows a principle of standardization without restriction: rather than hiding Spring Boot behind its own abstraction, it complements it — teams keep the full power of the underlying framework while gaining aligned defaults for the mandatory and technically demanding non-functional requirements. It builds on established open-source solutions and adds building blocks only where they are missing.

The value extends well beyond initial development, where most of an application's effort is actually spent:

  • Faster, safer delivery. Opinionated CI/CD, automated regression testing and feature-flag-based releases shorten the path from commit to production.
  • Secure and compliant by default. Zero-trust messaging, data-at-rest encryption and automated governance checks make compliance largely a by-product of using the platform.
  • Self-documenting applications. OpenAPI specs, message and consumer contracts, DB schemas and deployments are published automatically to the architecture repository.
  • Cloud portability. Business logic stays platform-agnostic, providing a proven cloud-exit strategy and low-effort migration between cloud and on-premises platforms.
  • Developer mobility. Shared conventions and tooling let developers move between teams; jEAP is used by different organizations across several Swiss federal administrations.

Problems jEAP solves

ConcernProvided by
Asynchronous messaging (Kafka/Avro)Librariesjeap-messaging
Reliable message delivery (Transactional Outbox)jeap-messaging-outbox
Ordered message processingjeap-messaging-sequential-inbox
Audit recordsjeap-audit
Client-side encryption of data-at-restjeap-crypto
Transparent JWE encryption of HTTP API payloadsjeap-spring-boot-jwe-starter
Certificate-based AWS credentials (IAM Roles Anywhere)jeap-spring-boot-roles-anywhere-starter
Real-time server→client events (SSE)jeap-server-sent-events
Search / OpenSearch indexing & queryingjeap-opensearch-* building blocks
Application setup, logging, monitoring, security, persistenceSpring Boot Starters
Secrets, DB migration & pooling, object storage, TLSSpring Boot Starters
Error handling of faulty messagesReusable Microservices — jeap-error-handling
Message exchange with external parties (HTTP messagebox)jeap-message-exchange-service
Process context & process archivejeap-process-context-service, jeap-process-archive-service
Architecture inventory & deployment loggingjeap-archrepo-service, jeap-deploymentlog-service
Policy compliance & governance checksjeap-governance-service
DB schema publishing to the architecture repositoryjeap-db-schema-publisher
Message contracts & business-process testsjeap-message-contract-service, jeap-bptest-orchestrator
OAuth2/OIDC mock for local development & testingjeap-oauth-mock-server
Project bootstrapping & codebase generationjeap-initializer
Developer tooling, registries, Maven pluginsTooling & Registries

Next steps