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。

是设计使然还是我需要更改应用程序或配置中的某些内容?

@Edit:有一个错字,请求的 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 回答