2

标题说了算。遵循Javalin 教程作为学习 kotlin 的一部分并在mvn package. 我想我需要引入一个依赖项,但该示例没有显示它,而且谷歌让我失望了。我的 pom.xml 很大,但我的版本信息如下:

<properties>
    <kotlin.version>1.1.3-2</kotlin.version>
</properties>

我当前的依赖列表是:

<dependencies>
    <dependency>
        <groupId>org.jetbrains.kotlin</groupId>
        <artifactId>kotlin-stdlib-jre8</artifactId>
        <version>${kotlin.version}</version>
    </dependency>
    <dependency>
        <groupId>io.javalin</groupId>
        <artifactId>javalin</artifactId>
        <version>0.3.3</version>
    </dependency>
</dependencies>

不太确定从这里去哪里。

4

1 回答 1

2

UserDao您忘记添加以下导入的课程中

import java.util.concurrent.atomic.AtomicInteger

该示例的所有资源都可以在 github ( https://github.com/tipsy/javalin-kotlin-example ) 上找到,因此您可以将其作为参考。

于 2017-07-07T05:16:12.800 回答