├── .gitignore ├── README.md ├── cf.md ├── demo ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── DemoApplication.java │ └── resources │ │ ├── application.properties │ │ └── static │ │ └── index.html │ └── test │ └── java │ └── com │ └── example │ └── DemoApplicationTests.java ├── manual-gc-tomcat.png ├── manual-gc-web.png ├── manual-gc.png └── non-heap-correlation.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsyer/spring-boot-memory-blog/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsyer/spring-boot-memory-blog/HEAD/README.md -------------------------------------------------------------------------------- /cf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsyer/spring-boot-memory-blog/HEAD/cf.md -------------------------------------------------------------------------------- /demo/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsyer/spring-boot-memory-blog/HEAD/demo/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /demo/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsyer/spring-boot-memory-blog/HEAD/demo/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /demo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsyer/spring-boot-memory-blog/HEAD/demo/mvnw -------------------------------------------------------------------------------- /demo/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsyer/spring-boot-memory-blog/HEAD/demo/mvnw.cmd -------------------------------------------------------------------------------- /demo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsyer/spring-boot-memory-blog/HEAD/demo/pom.xml -------------------------------------------------------------------------------- /demo/src/main/java/com/example/DemoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsyer/spring-boot-memory-blog/HEAD/demo/src/main/java/com/example/DemoApplication.java -------------------------------------------------------------------------------- /demo/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsyer/spring-boot-memory-blog/HEAD/demo/src/main/resources/application.properties -------------------------------------------------------------------------------- /demo/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsyer/spring-boot-memory-blog/HEAD/demo/src/main/resources/static/index.html -------------------------------------------------------------------------------- /demo/src/test/java/com/example/DemoApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsyer/spring-boot-memory-blog/HEAD/demo/src/test/java/com/example/DemoApplicationTests.java -------------------------------------------------------------------------------- /manual-gc-tomcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsyer/spring-boot-memory-blog/HEAD/manual-gc-tomcat.png -------------------------------------------------------------------------------- /manual-gc-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsyer/spring-boot-memory-blog/HEAD/manual-gc-web.png -------------------------------------------------------------------------------- /manual-gc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsyer/spring-boot-memory-blog/HEAD/manual-gc.png -------------------------------------------------------------------------------- /non-heap-correlation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsyer/spring-boot-memory-blog/HEAD/non-heap-correlation.png --------------------------------------------------------------------------------