Exposed 0.55.0 Help

Modules

Dependencies

Exposed modules are available from Maven Central repository. To use them you have to add appropriate dependency into your repositories mapping.

repositories { mavenCentral() }

The Maven Central repository is enabled by default for Maven users.

repositories { mavenCentral() }

Base Modules

Exposed 0.18.1 and higher

To move forward and support such features as Java 8 Time, async drivers, and so on, it was decided to split Exposed into more specific modules. It will allow you to take the only modules you need and will add flexibility in the future.

Exposed consists of the following modules:

  • exposed-core - base module, which contains both DSL api along with mapping

  • exposed-crypt - provides additional column types to store encrypted data in DB and encode/decode it on client-side

  • exposed-dao - DAO api

  • exposed-java-time - date-time extensions based on Java8 Time API

  • exposed-jdbc - transport level implementation based on Java JDBC API

  • exposed-jodatime - date-time extensions based on JodaTime library

  • exposed-json - JSON and JSONB data type extensions

  • exposed-kotlin-datetime - date-time extensions based on kotlinx-datetime

  • exposed-money - extensions to support MonetaryAmount from "javax.money:money-api"

  • exposed-spring-boot-starter - a starter for Spring Boot to utilize Exposed as the ORM instead of Hibernate

Dependencies mapping listed below is similar (by functionality) to the previous versions:

val exposedVersion: String = "0.55.0" dependencies { implementation("org.jetbrains.exposed:exposed-core:$exposedVersion") implementation("org.jetbrains.exposed:exposed-crypt:$exposedVersion") implementation("org.jetbrains.exposed:exposed-dao:$exposedVersion") implementation("org.jetbrains.exposed:exposed-jdbc:$exposedVersion") // optional jodatime implementation("org.jetbrains.exposed:exposed-jodatime:$exposedVersion") // optional java-time implementation("org.jetbrains.exposed:exposed-java-time:$exposedVersion") // optional kotlin-datetime implementation("org.jetbrains.exposed:exposed-kotlin-datetime:$exposedVersion") // optional json implementation("org.jetbrains.exposed:exposed-json:$exposedVersion") // optional money implementation("org.jetbrains.exposed:exposed-money:$exposedVersion") // optional spring-boot implementation("org.jetbrains.exposed:exposed-spring-boot-starter:$exposedVersion") }
<dependencies> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-core</artifactId> <version>0.55.0</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-crypt</artifactId> <version>0.55.0</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-dao</artifactId> <version>0.55.0</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-java-time</artifactId> <version>0.55.0</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-jdbc</artifactId> <version>0.55.0</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-jodatime</artifactId> <version>0.55.0</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-json</artifactId> <version>0.55.0</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-kotlin-datetime</artifactId> <version>0.55.0</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-money</artifactId> <version>0.55.0</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-spring-boot-starter</artifactId> <version>0.55.0</version> </dependency> </dependencies>
def exposedVersion = "0.55.0" dependencies { implementation "org.jetbrains.exposed:exposed-core:$exposedVersion" implementation "org.jetbrains.exposed:exposed-crypt:$exposedVersion" implementation "org.jetbrains.exposed:exposed-dao:$exposedVersion" implementation "org.jetbrains.exposed:exposed-jdbc:$exposedVersion" // optional jodatime implementation "org.jetbrains.exposed:exposed-jodatime:$exposedVersion" // optional java-time implementation "org.jetbrains.exposed:exposed-java-time:$exposedVersion" // optional kotlin-datetime implementation "org.jetbrains.exposed:exposed-kotlin-datetime:$exposedVersion" // optional json implementation "org.jetbrains.exposed:exposed-json:$exposedVersion" // optional money implementation "org.jetbrains.exposed:exposed-money:$exposedVersion" // optional spring-boot implementation "org.jetbrains.exposed:exposed-spring-boot-starter:$exposedVersion" }

JDBC driver and logging

You also need a JDBC driver for the database system you are using (see Working with Databases) and a logger for addLogger(StdOutSqlLogger). Example (Gradle syntax):

dependencies { // for H2 implementation("com.h2database:h2:2.1.214") // for logging (StdOutSqlLogger), see // http://www.slf4j.org/codes.html#StaticLoggerBinder implementation("org.slf4j:slf4j-nop:1.7.30") }

Exposed 0.17.x and lower

Prior Exposed 0.18.1 there was only one base module exposed which contains everything you may need including JodaTime as date-time library. To add Exposed framework of that version, you had to use:

dependencies { implementation("org.jetbrains.exposed:exposed:0.17.7") }
<dependencies> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed</artifactId> <version>0.17.7</version> </dependency> </dependencies>
dependencies { implementation("org.jetbrains.exposed:exposed:0.17.7") }
Last modified: 25 September 2024