Skip to content

axitera/meetup-docker-2022

Repository files navigation

Setup Intellij

File -> Settings -> Build, Execution, Deployment -> Compiler -> Build project automatically
File -> Settings -> Advenced Settings -> Allow auto-make to start even if developed application is running 

build.gradle output-Verzeichnis setzen

idea {
	module {
		inheritOutputDirs = false
		outputDir = file("$buildDir/classes/java/main/")
	}
}

Docker

build.gradle DevTools müssen im das jar eingebaut werden, dass in das Iamge kommt.

bootJar {
	classpath configurations.developmentOnly
}

dependencies {
	implementation('org.springframework.boot:spring-boot-starter-web')
	developmentOnly("org.springframework.boot:spring-boot-devtools")
}
  1. Image bauen
  2. ausführen
  3. RemoteSpringApplication starten
  4. Code editeren

Test

Embedded

Zonky braucht unter Windows

visual c 2013

Kafka consumer

kafka-console-consumer.sh --topic ax-meetup-topic --from-beginning --bootstrap-server localhost:9092

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages