我对Kotlin,Ktor和Gradle很新。能够按照Ktor站点中的说明创建嵌入式服务器,使用以下代码:
BlogApp.kt :
package blog
import org.jetbrains.ktor.netty.*
import org.jetbrains.ktor.routing.*
import org.jetbrains.ktor.application.*
import org.jetbrains.ktor.features.*
import org.jetbrains.ktor.host.*
import org.jetbrains.ktor.http.*
import org.jetbrains.ktor.response.*
fun Application.module() {
install(DefaultHeaders)
install(CallLogging)
install(Routing) {
get("/") {
call.respondText("My Example Blog sfs 122", ContentType.Text.Html)
}
}
}
fun main(args: Array<String>) {
embeddedServer(Netty, 8080, watchPaths = listOf("BlogAppKt"), module = Application::module).start()
}
和 build.gradle :
group 'Example'
version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.1.4-3'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'java'
apply plugin: 'kotlin'
sourceCompatibility = 1.8
ext.ktor_version = '0.4.0'
repositories {
mavenCentral()
maven { url "http://dl.bintray.com/kotlin/ktor" }
maven { url "https://dl.bintray.com/kotlin/kotlinx" }
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
compile "org.jetbrains.ktor:ktor-core:$ktor_version"
compile "org.jetbrains.ktor:ktor-netty:$ktor_version"
compile "ch.qos.logback:logback-classic:1.2.1"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
kotlin {
experimental {
coroutines "enable"
}
}
服务器正常运行:localhost:8080
我可以在out
文件夹中看到以下文件:
C:\Users\Home\IdeaProjects\Example\out\production\classes\blog
如何知道创建此服务器的可执行文件.jar,以便将其分发给用户?
答案 0 :(得分:6)
您需要做的是将以下代码添加到build.gradle
文件:
jar {
baseName '<jar_name>'
manifest {
attributes 'Main-Class': 'blog.BlogAppKt'
}
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
}
然后运行:gradle clean jar
。完成后,导航至build/libs
并运行java -jar <jar_name>.jar
。
或者使用javaw -jar <jar_name>.jar
而不是java来运行它(如果没有很好地定义JAVA_HOME,您可能需要确保它在路径上)。这将在没有任何控制台的情况下运行它。
P.S。您还可以使用application
插件或shadowJar
。