Developing the identity service

As we mentioned earlier, we will implement CRUD operations for the organization and person entities, and we will explain one flow of these operations here.

We will add the following mentioned dependencies to the identity service:

        <dependency>            <groupId>org.jetbrains.kotlin</groupId>            <artifactId>kotlin-stdlib-jdk8</artifactId>            <version>${kotlin.version}</version>        </dependency>            <dependency>            <groupId>com.sun.jersey</groupId>            <artifactId>jersey-server</artifactId>            <version>${jersey-server}</version>        </dependency>        <dependency>            <groupId>com.sun.jersey</groupId>            <artifactId>jersey-json</artifactId>            <version>${jersey-json}</version>        </dependency>        <dependency>            <groupId>com.sun.jersey</groupId> <artifactId>jersey-client</artifactId> ...

Get Kotlin for Enterprise Applications using Java EE now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.