You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/api-kotlin.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,15 +14,15 @@ The main Kotlin API module. It provides the `ORMTemplate` interface, extension f
14
14
15
15
```kotlin
16
16
// Gradle (Kotlin DSL)
17
-
implementation("st.orm:storm-kotlin:1.9.0")
17
+
implementation("st.orm:storm-kotlin:1.9.1")
18
18
```
19
19
20
20
```xml
21
21
<!-- Maven -->
22
22
<dependency>
23
23
<groupId>st.orm</groupId>
24
24
<artifactId>storm-kotlin</artifactId>
25
-
<version>1.9.0</version>
25
+
<version>1.9.1</version>
26
26
</dependency>
27
27
```
28
28
@@ -33,7 +33,7 @@ The Kotlin API does not depend on any preview features. All APIs are stable and
33
33
Spring Framework integration for Kotlin. Provides `RepositoryBeanFactoryPostProcessor` for repository auto-discovery and injection, `@EnableTransactionIntegration` for bridging Storm's programmatic transactions with Spring's `@Transactional`, and transaction-aware coroutine support. Add this module when you use Spring Framework without Spring Boot.
See [Spring Integration](spring-integration.md) for configuration details.
@@ -43,7 +43,7 @@ See [Spring Integration](spring-integration.md) for configuration details.
43
43
Spring Boot auto-configuration for Kotlin. Automatically creates an `ORMTemplate` bean from the `DataSource`, discovers repositories, enables transaction integration, and binds `storm.*` properties from `application.yml`. This is the recommended dependency for Spring Boot applications.
See [Spring Integration: Spring Boot Starter](spring-integration.md#spring-boot-starter) for what the starter provides and how to override its defaults.
@@ -53,7 +53,7 @@ See [Spring Integration: Spring Boot Starter](spring-integration.md#spring-boot-
53
53
Validation support for Kotlin entities. Provides integration with Kotlin validation libraries for entity constraint checking.
The two modules are mutually exclusive on the classpath. Both provide the same public API (`st.orm.jackson` package), so switching between them requires only changing the Maven dependency.
0 commit comments