application.yml
app:
vendor:
port:
ABL: 8300
MENEKIS: 5050
Spring
application.yml
app:
vendor:
port:
ABL: 8300
MENEKIS: 5050
Spring
fun getSomething( | |
param1: String | |
): ResponseObj? { | |
return restClient | |
.get() | |
.uri( | |
"/someUrl/{param1}", | |
param1 | |
) | |
.httpRequest { |
@SpringBootApplication | |
class Application{ | |
@Bean | |
fun runner() = CommandLineRunner{ | |
println("Hello World") | |
} | |
} |
<html> | |
<head> | |
<style> | |
#container { | |
background-color: #FFFFFF; | |
} | |
.arrow { | |
position: absolute; | |
top: 10%; |
01711190994 | |
01730184929 | |
01711378443 | |
01716409799 | |
01711042160 | |
01711468431 | |
01818472880 | |
01743611407 | |
01729685545 | |
01817015379 |
❯ java -jar build/libs/demo-0.0.1-SNAPSHOT.jar --spring.config.location=file:///tmp/application.properties [16:31:02] |
❯ java -jar build/libs/demo-0.0.1-SNAPSHOT.jar --server.port=8871 [16:18:37] |
cat -> fileName.txt |
@Bean | |
public CommandLineRunner init() { | |
return args -> { | |
}; | |
} | |
@Bean | |
fun init() = CommandLineRunner { |