# spring-boot-hello-world **Repository Path**: reymont/spring-boot-hello-world ## Basic Information - **Project Name**: spring-boot-hello-world - **Description**: Spring Boot application sample used in blog post for creating an application using IntelliJ - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2019-07-22 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Sample Spring Boot Application # This sample Spring Boot application was written for a blog post describing how to create a Spring Boot application with IntelliJ. http://patrickgrimard.com/2014/08/14/how-to-build-a-spring-boot-application-using-intellij-idea/ #ADD Dockerfile demo ``` mvm clean package cd target docker build -t jmx-hello . docker run -d -p 10001:10001 --restart=always --name=jh jmx-hello ``` You can use https://github.com/reymont/jvmviewer to get information. ``` http://:8080/jvmviewer/jolokia.html?ip=&port=10001 ``` # aop * 正常执行 * `http://localhost:8080/first` * 抛出异常 * `http://localhost:8080/doError` * 带参数 * `http://172.20.54.95:8080/hello?name=reymont`