SpringBoot 와 docker 의 결합 예시

7840 단어 SpringBootdocker
최근 한동안 용기 화가 트 렌 드 로 떠 올 랐 다.한 대의 서버 는 여러 개의 용기 로 가상 할 수 있 고 서 비 스 를 제공 할 수 있 으 며 하드웨어 자원 을 공유 하고 원 가 를 절약 할 수 있 습 니 다.용기 화 된 장점 은 바로 Docker 입 니 다.우리 회사 의 모든 마이크로 서비스의 발 표 는 용기 화 되 었 습 니 다.spring boot 도 트 렌 드 에 맞 춰 Docker 의 maven 플러그 인 을 추가 하여 명령 을 실행 하여 미 러 를 만 들 수 있 습 니 다.
이 절의 주요 내용 은 코드 를 말 하 는 것 이 아니 라 이 Docker 플러그 인 을 말 하 는 것 입 니 다.잔말 말고 pom 에 가세 요.

<plugin>
        <groupId>com.spotify</groupId>
        <artifactId>docker-maven-plugin</artifactId>
        <version>0.4.12</version>
        <configuration>
          <!--   imageName        [a-z0-9-_.] ,         -->
          <!--   :https://github.com/spotify/docker-maven-plugin  Invalid repository name ... only [a-z0-9-_.] are allowed-->
          <imageName>spring-boot-docker-start</imageName>
          <!--   from java,          ,           -->
          <baseImage>java</baseImage>
          <exposes>
            <!--      8080  -->
            <expose>8080</expose>
          </exposes>
          <!--   ,     -->
          <entryPoint>["java", "-jar", "/${project.build.finalName}.jar"]</entryPoint>
          <resources>
            <resource>
              <targetPath>/</targetPath>
              <directory>${project.build.directory}</directory>
              <include>${project.build.finalName}.jar</include>
            </resource>
          </resources>
        </configuration>
      </plugin>
imageName 은 미 러 의 이름 입 니 다.baseImage 는 기본 미 러 입 니 다.로 컬 에 로 컬 미 러 를 사용 합 니 다.없 으 면 원 격 창고 에서 끌 어 내 고 용기 안의 8080 포트 를 노출 시 키 며 자바-jar 명령 을 실행 하여 마이크로 서 비 스 를 시작 합 니 다.Docker 를 사용 하려 면 Dockerfile 파일 을 만들어 야 한 다 는 것 을 알 고 있 습 니 다.그 안의 요 소 는 Maven 플러그 인의 탭 을 통 해 완전히 나타 납 니 다.전제 가 있 습 니 다.Docker 를 먼저 설치 해 야 합 니 다.여기까지 설명 하고 우 리 는 운행 을 시작 했다.
첫 번 째 단계:mvn clean package docker:build 를 실행 하여 미 러 를 만 듭 니 다.
두 번 째 단계:미 러 docker run-it-P spring-boot-docker-start 를 시작 하여 용기 안의 로 그 를 봅 니 다.

➜ spring-boot-docker-start git:(master) docker run -it -P spring-boot-docker-start

 .  ____     _      __ _ _
 /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/ ___)| |_)| | | | | || (_| | ) ) ) )
 ' |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::    (v1.3.5.RELEASE)

2018-03-25 08:41:56.274 INFO 1 --- [      main] com.shuqi.ApplicationMain        : Starting ApplicationMain on 075543f8f5b6 with PID 1 (/spring-boot-docker-start.jar started by root in /)
2018-03-25 08:41:56.287 INFO 1 --- [      main] com.shuqi.ApplicationMain        : No active profile set, falling back to default profiles: default
2018-03-25 08:41:56.406 INFO 1 --- [      main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@126d28d3: startup date [Sun Mar 25 08:41:56 UTC 2018]; root of context hierarchy
2018-03-25 08:41:58.356 INFO 1 --- [      main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2018-03-25 08:41:58.382 INFO 1 --- [      main] o.apache.catalina.core.StandardService  : Starting service Tomcat
2018-03-25 08:41:58.384 INFO 1 --- [      main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.0.33
2018-03-25 08:41:58.512 INFO 1 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/]    : Initializing Spring embedded WebApplicationContext
2018-03-25 08:41:58.512 INFO 1 --- [ost-startStop-1] o.s.web.context.ContextLoader      : Root WebApplicationContext: initialization completed in 2113 ms
2018-03-25 08:41:58.920 INFO 1 --- [ost-startStop-1] o.s.b.c.e.ServletRegistrationBean    : Mapping servlet: 'dispatcherServlet' to [/]
2018-03-25 08:41:58.928 INFO 1 --- [ost-startStop-1] o.s.b.c.embedded.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2018-03-25 08:41:58.937 INFO 1 --- [ost-startStop-1] o.s.b.c.embedded.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2018-03-25 08:41:58.937 INFO 1 --- [ost-startStop-1] o.s.b.c.embedded.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2018-03-25 08:41:58.938 INFO 1 --- [ost-startStop-1] o.s.b.c.embedded.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2018-03-25 08:41:59.406 INFO 1 --- [      main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@126d28d3: startup date [Sun Mar 25 08:41:56 UTC 2018]; root of context hierarchy
2018-03-25 08:41:59.516 INFO 1 --- [      main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello],methods=[GET]}" onto public java.lang.String com.shuqi.controller.HelloController.hello()
2018-03-25 08:41:59.523 INFO 1 --- [      main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2018-03-25 08:41:59.524 INFO 1 --- [      main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2018-03-25 08:41:59.584 INFO 1 --- [      main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2018-03-25 08:41:59.585 INFO 1 --- [      main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2018-03-25 08:41:59.645 INFO 1 --- [      main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2018-03-25 08:41:59.754 INFO 1 --- [      main] o.s.j.e.a.AnnotationMBeanExporter    : Registering beans for JMX exposure on startup
2018-03-25 08:41:59.834 INFO 1 --- [      main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2018-03-25 08:41:59.838 INFO 1 --- [      main] com.shuqi.ApplicationMain        : Started ApplicationMain in 4.084 seconds (JVM running for 5.012)
[2018-03-25 08:41:59] server started!
시작 에 성 공 했 습 니 다.
세 번 째 단계:docker ps 를 입력 하여 용기 안의 8080 포트 가 이 컴퓨터 의 어느 포트 에 매 핑 되 었 는 지 보 세 요.

CONTAINER ID    IMAGE           COMMAND         CREATED       STATUS       PORTS           NAMES
075543f8f5b6    spring-boot-docker-start  "java -jar /spring..."  About a minute ago  Up About a minute  0.0.0.0:32768->8080/tcp  trusting_noether
32768 포트 가 확실 합 니 다.
4 단계:브 라 우 저 에 입력http://localhost:32768/hello보다

우리 가 용기 안에 접근 하 는 프로그램 이 성공 했다 는 것 을 설명 합 니 다!
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기