Maven jetty プラグインを使用して Web アプリケーションを実行しています。localhost
、ip
またはのいずれかを使用して Web アプリケーションにアクセスできますserver name
。
しかし、アプリケーション名を使用してアプリケーションにアクセスしたいとしましょう。
例えば。
http://ip:port/login/login.jsp
http://servername:port/login/login.jsp
ポートやIPがないようなものが欲しいです。
http://applicationname/login/login.jsp
pom.xml
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.9.v20130131</version>
<configuration>
<connectors>
<connector implementation="org.eclipse.jetty.server.bio.SocketConnector">
<port>port</port>
</connector>
</connectors>
<stopPort>18080</stopPort>
<scanIntervalSeconds>0</scanIntervalSeconds>
<webXml>target/classes/WEB-INF/web.xml</webXml>
<!-- <webApp> <contextPath>/</contextPath> </webApp> -->
</configuration>
</plugin>