내 응용 프로그램이 URL의 로컬 호스트 (예 : http://localhost:8080/WebIntegrationApp
)에서 실행되고 있습니다. http://localhost:8080/WebIntegrationApp
url을 http://WebIntegrationApp
으로 바꾸는 방법은 pom.xml 파일입니다. URL이 http://WebIntegrationApp
인이 응용 프로그램을 실행하고 싶습니다.로컬 호스트를 pom 파일의 의미 전체 URL 이름으로 바꾸는 방법
사용되는 OS는 로컬 호스트에 대한 Tomcat을 실행하는 데 사용 플러그인이 여기에 Windows7의이고 :
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<url>http://localhost:8080/manager/text</url>
<server>localhost</server>
<path>/WebIntegrationApp</path>
<username>admin</username>
<password>s3cret</password>
</configuration>
<executions>
<execution>
<id>tomcat-run</id>
<goals>
<goal>run-war-only</goal>
</goals>
<phase>pre-integration-test</phase>
<configuration>
<fork>true</fork>
</configuration>
</execution>
<execution>
<id>tomcat-shutdown</id>
<goals>
<goal>shutdown</goal>
</goals>
<phase>post-integration-test</phase>
</execution>
</executions>
</plugin>
감사합니다. 나는 이것이 좋은 생각이 아닌 것 같아요.이 파일을 다른 사용자가 사용해야한다면, 각각이 호스트 파일을 편집해야합니다. 그래서 나는 일반 솔루션을 찾고있다. 하나의 변경은 다른 사람들을 위해 일한다. –
그런 다음 DNS 서버 설정을 구성해야합니다. –