Merge pull request #42801 from jeonghyeon00

* pr/42801:
  Upgrade copyright year of changed file
  Use Kotlin String Templates

Closes gh-42801
This commit is contained in:
Stéphane Nicoll
2024-10-21 16:58:50 +02:00

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2023 the original author or authors.
* Copyright 2012-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -55,14 +55,14 @@ inline fun <reified T : Any> runApplication(vararg args: String, init: SpringApp
*/
inline fun <reified T : Any> fromApplication(): SpringApplication.Augmented {
val type = T::class
val ktClassName = type.qualifiedName + "Kt"
val ktClassName = "${type.qualifiedName}Kt"
try {
val ktClass = ClassUtils.resolveClassName(ktClassName, type.java.classLoader)
val mainMethod = ReflectionUtils.findMethod(ktClass, "main", Array<String>::class.java)
Assert.notNull(mainMethod, "Unable to find main method")
return SpringApplication.from { ReflectionUtils.invokeMethod(mainMethod!!, null, it) }
} catch (ex: Exception) {
throw IllegalStateException("Unable to use 'fromApplication' with " + type.qualifiedName)
throw IllegalStateException("Unable to use 'fromApplication' with ${type.qualifiedName}")
}
}