Why if I run an empty spring boot application `ja...
# spring
e
Why if I run an empty spring boot application
java  -Xmx64m -Xss256k -jar springexample-0.0.1-SNAPSHOT.jar
it takes 200mb memory? Is it possible to reduce it?
Copy code
dependencies {
	compile "org.springframework.boot:spring-boot-starter-actuator:$springBootVersion"
	compile "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
	compile "org.springframework.boot:spring-boot-starter-undertow:$springBootVersion"
	compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlinVersion"
	compile "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
	runtime "org.springframework.boot:spring-boot-devtools:$springBootVersion"
	testCompile "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
}