HTTPRouter 모듈은 기본적으로 포함되어 있으므로 Liberty 로 마이그레이션하는 동안 지정할 필요가 없습니다. 이 규칙은 JAX-WS 웹 서비스를 사용하는 WebSphere 기존 애플리케이션에서 HTTPRouter 모듈의 존재를 플래그합니다. WebSphere 이 모듈을 사용하는 애플리케이션은 각 빌드에서 모듈 종속성을 제거해야 합니다.
예를 들어 pom.xml snippet provided, the line containing the <module>Test_HTTPRouter</module>
텍스트를 제거해야 합니다. 이 Maven 애플리케이션을 Liberty 으로 마이그레이션할 때.
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany.app</groupId>
<artifactId>my-app</artifactId>
<version>1</version>
<!-- Module dependencies -->
<modules>
<module>TestEJB</module>
<module>Test_HTTPRouter</module>
<module>TestPMIWeb</module>
</modules>
</project>
웹 서비스 라우터 모듈에 대한 자세한 내용은 다음을 참조하세요 웹 서비스 라우터 모듈 만들기를 참조하세요.