12장. Karaf 이미지에 대한 애플리케이션 개발
이 튜토리얼에서는 Karaf 이미지에 대한 애플리케이션을 만들고 배포하는 방법을 보여줍니다.
12.1. Maven archetype을 사용하여 Karaf 프로젝트 생성
Maven archetype을 사용하여 Karaf 프로젝트를 생성하려면 다음 단계를 따르십시오.
프로세스
- 시스템의 적절한 디렉터리로 이동합니다.
Maven 명령을 시작하여 Karaf 프로젝트를 생성합니다.
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=karaf-camel-log-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-karaf-camel-log 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-karaf-camel-log version: 1.0-SNAPSHOT package: org.example.fis Y: : Y
메시지가 표시되면
groupId
값으로org.example.fis
를 입력하고artifactId
값에 대해fuse713-karaf-camel-log
를 입력합니다. 나머지 필드의 기본값을 수락합니다.-
위의 명령이 BUILD SUCCESS 상태로 종료되면
fuse713-karaf-camel-log
하위 디렉터리에 OpenShift 프로젝트에서 새 Fuse가 있어야 합니다. 이제
fuse713-karaf-camel-log
프로젝트를 빌드하고 배포할 준비가 되었습니다. OpenShift에 로그인되어 있다고 가정하면fuse713-karaf-camel-log
프로젝트의 디렉터리로 변경한 다음 다음과 같이 프로젝트를 빌드하고 배포합니다.cd fuse713-karaf-camel-log mvn oc:deploy -Popenshift
사용 가능한 Karaf archetypes의 전체 목록은 Karaf Archetype Catalog 를 참조하십시오.