6장. Spring Boot 이미지용 애플리케이션 개발


이 장에서는 Spring Boot 이미지용 애플리케이션을 개발하는 방법을 설명합니다.

6.1. Maven archetype을 사용하여 Spring Boot 2 프로젝트 생성

이 빠른 시작에서는 Maven archetypes를 사용하여 Spring Boot 2 프로젝트를 생성하는 방법을 보여줍니다.

프로세스

  1. 시스템의 적절한 디렉터리로 이동합니다.
  2. 쉘 프롬프트에서 다음 mvn 명령을 입력하여 Spring Boot 2 프로젝트를 생성합니다.

    mvn org.apache.maven.plugins:maven-archetype-plugin:2.4:generate \
      -DarchetypeCatalog=https://maven.repository.redhat.com/ga/io/fabric8/archetypes/archetypes-catalog/2.2.0.fuse-7_13_0-00014-redhat-00001/archetypes-catalog-2.2.0.fuse-7_13_0-00014-redhat-00001-archetype-catalog.xml \
      -DarchetypeGroupId=org.jboss.fuse.fis.archetypes \
      -DarchetypeArtifactId=spring-boot-camel-xml-archetype \
      -DarchetypeVersion=2.2.0.fuse-7_13_0-00014-redhat-00001

    archetype 플러그인은 대화형 모드로 전환되어 나머지 필드를 입력하라는 메시지를 표시합니다.

    Define value for property 'groupId': : org.example.fis
    Define value for property 'artifactId': : fuse713-spring-boot
    Define value for property 'version':  1.0-SNAPSHOT: :
    Define value for property 'package':  org.example.fis: :
    Confirm properties configuration:
    groupId: org.example.fis
    artifactId: fuse713-spring-boot
    version: 1.0-SNAPSHOT
    package: org.example.fis
     Y: : Y

    메시지가 표시되면 groupId 값으로 org.example.fis 를 입력하고 artifactId 값으로 fuse713-spring-boot 를 입력합니다. 나머지 필드의 기본값을 수락합니다.

  3. 위의 명령이 BUILD SUCCESS 상태로 종료되면 fuse713-spring-boot 하위 디렉터리에 OpenShift 프로젝트에서 새 Fuse가 있어야 합니다.
  4. 이제 fuse713-spring-boot 프로젝트를 빌드하고 배포할 준비가 되었습니다. OpenShift에 로그인되어 있다고 가정하면 fuse713-spring-boot 프로젝트의 디렉터리로 변경한 다음 다음과 같이 프로젝트를 빌드하고 배포합니다.

    cd fuse713-spring-boot
    mvn oc:deploy -Popenshift
참고

사용 가능한 Spring Boot 2 archetypes의 전체 목록은 Spring Boot 2 Archetype 카탈로그 를 참조하십시오.

Red Hat logoGithubRedditYoutubeTwitter

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 문서 정보

Red Hat을 사용하는 고객은 신뢰할 수 있는 콘텐츠가 포함된 제품과 서비스를 통해 혁신하고 목표를 달성할 수 있습니다.

보다 포괄적 수용을 위한 오픈 소스 용어 교체

Red Hat은 코드, 문서, 웹 속성에서 문제가 있는 언어를 교체하기 위해 최선을 다하고 있습니다. 자세한 내용은 다음을 참조하세요.Red Hat 블로그.

Red Hat 소개

Red Hat은 기업이 핵심 데이터 센터에서 네트워크 에지에 이르기까지 플랫폼과 환경 전반에서 더 쉽게 작업할 수 있도록 강화된 솔루션을 제공합니다.

© 2024 Red Hat, Inc.