6

webapp は Spring MVC を使用します。

<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
    <property name="urlMap">
        <map>
            <entry key="/*" value-ref="defaultHandler"/>
        </map>
    </property>
    <property name="order" value="2"/>
</bean>
<bean name="defaultHandler" class="org.springframework.web.servlet.mvc.UrlFilenameViewController"/>

<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
    <property name="prefix" value="/"/>
    <property name="suffix" value=""/>        
</bean>

したがって、次のようなリクエストhttp://localhost:8080/application-context-folder/index.jsp は application-context-folder/index.jsp に解決され、それらは domain1/docroot/application-context-folder に解決されます。

それは設計によるものですか、それともアプリケーションまたは構成で何かを変更する必要がありますか?

@編集: タイプミスがありました。要求された URL はhttp://localhost:8080/application-context-folder/index.jsp, not http://localhost:8080/index.jsp

4

1 に答える 1

3

アプリケーション コンテキストへのリダイレクトを使用します。ドメインの docroot フォルダーに index.html ファイルを配置します。ファイルは次のようになります。

<html>
<head>
<title>Your application title</title>
<frameset>
<frame src="http://localhost:8080/[application_context]">
</frameset>
</head>
<body>
Redirecting to <a href="http://localhost:8080/[application_context]">Some title</a>...
</body>

于 2012-11-07T13:57:48.027 に答える