|
|
|
@ -1,5 +1,5 @@ |
|
|
|
/* |
|
|
|
/* |
|
|
|
* Copyright 2012-2022 the original author or authors. |
|
|
|
* Copyright 2012-present the original author or authors. |
|
|
|
* |
|
|
|
* |
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
@ -29,12 +29,12 @@ class MyApplication { |
|
|
|
|
|
|
|
|
|
|
|
private val logger: Log = LogFactory.getLog(MyApplication::class.java) |
|
|
|
private val logger: Log = LogFactory.getLog(MyApplication::class.java) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@RequestMapping("/") |
|
|
|
@RequestMapping("/") |
|
|
|
fun hello(): String { |
|
|
|
fun hello(): String { |
|
|
|
logger.info("home() has been called") |
|
|
|
logger.info("home() has been called") |
|
|
|
return "Hello, World!" |
|
|
|
return "Hello, World!" |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
fun main(args: Array<String>) { |
|
|
|
fun main(args: Array<String>) { |
|
|
|
|