diff --git a/java/_menu.md b/java/_menu.md
index c1b67c350..869286101 100644
--- a/java/_menu.md
+++ b/java/_menu.md
@@ -24,6 +24,7 @@
# [Multitenancy](multitenancy)
# [Security](security)
# [Spring Boot Integration](spring-boot-integration)
+## [CAP plugins in plain Spring Boot](cap-plugins-in-spring-boot-apps)
# [Developing Applications](developing-applications/)
## [Building](developing-applications/building)
## [Running](developing-applications/running)
@@ -37,4 +38,4 @@
# [Integrating Applications](../../java/integrating-applications/)
## [Unified Customer Landscape](../../java/integrating-applications/ucl)
# [Building Plugins](building-plugins)
-# [Migration Guides](migration)
\ No newline at end of file
+# [Migration Guides](migration)
diff --git a/java/cap-plugins-in-spring-boot-apps.md b/java/cap-plugins-in-spring-boot-apps.md
new file mode 100644
index 000000000..cdd4e0ec7
--- /dev/null
+++ b/java/cap-plugins-in-spring-boot-apps.md
@@ -0,0 +1,74 @@
+---
+synopsis: >
+ This guide shows how Spring Boot applications that run without a CDS model can integrate with service offerings on SAP BTP by using CAP plugins without a full migration to CAP Java.
+status: released
+---
+
+# Use CAP Plugins in Spring Boot Applications without a CDS Model
+
+
+
+
+
+{{ $frontmatter.synopsis }}
+
+CAP Java offers a [variety of plugins that integrate with SAP BTP services](../plugins/) and keep your application free of hard-coded service dependencies. In the CAP ecosystem, this approach is called [Calesi (CAP level service integration)](../get-started/concepts#the-calesi-pattern). Most Calesi plugins expose a CAP service that you can inject as a Spring Boot component. As the CAP runtime can run alongside a Spring Boot application without a CDS model, this lets you use proven service integration through CAP plugins with a growing set of SAP BTP services.
+
+In most cases, you add a CAP Java plugin by adding one or more dependencies to your application `pom.xml` and by adding configuration to `application.yaml` or another mechanism for [Spring Boot configuration](https://docs.spring.io/spring-boot/reference/features/external-config.html). The following sections show examples of how to use the core CAP Java runtime and CAP plugins to integrate a Spring Boot application with different SAP BTP services.
+
+To use any CAP Java plugin in a Spring Boot application, include two Maven dependencies. The first dependency is the core CAP Java runtime with its Spring Boot integration:
+
+```xml
+
+ com.sap.cds
+ cds-framework-spring-boot
+ ${cds.services.version}
+ runtime
+
+```
+This boots the CAP Java runtime when your Spring Boot application starts. To interact with CAP and its plugins, add an additional dependency for the CAP Java application programming interface artifact:
+
+```xml
+
+ com.sap.cds
+ cds-services-api
+ ${cds.services.version}
+
+
+```
+
+Also add a version property in your `` section:
+
+```xml-vue
+{{ versions.java_services }}
+```
+
+## SAP Audit Log Service
+
+CAP audit log support lets your application write audit log messages for relevant operations. The audit log application programming interfaces and the local default implementation are already part of the basic dependencies.
+
+The SAP Audit Log service implementation for SAP BTP integrates with the CAP Java audit log application programming interfaces and is available as an additional plugin. Learn more in the [plugin documentation](https://github.com/cap-java/cds-feature-auditlog-ng).
+
+For details on how to use the audit log application programming interfaces in your application code, refer to the [Auditlog documentation](./auditlog).
+
+## CAP Messaging
+
+The CAP framework offers an abstraction layer for messaging services. CAP applications can emit events and messages to a `MessagingService` regardless of the target messaging infrastructure. The local default implementation for messaging is part of the basic dependencies mentioned in the previous sections and uses the file system as the communication layer. This means you do not need a dedicated message broker for local development.
+
+With the two basic dependencies included, activate file-based messaging in the application configuration:
+
+```yaml
+cds.messaging.services.messaging.kind: file-based-messaging
+```
+
+After that, you can use the CAP messaging feature in your application. For details, refer to the [Messaging documentation](./messaging).
+
+
\ No newline at end of file