我对Spring框架和Web应用程序很陌生,尽管我对Java很有经验。当我在本地tomcat服务器上运行我的站点时,URL为:http://localhost:8080/myApp/
现在请求映射将我委托给我的主页:
@RequestMapping(value = "/", method = RequestMethod.GET)
public String someMethod(Model model) { ...
return "index"; }
现在在index.xhtml
文件中,我使用<a href="apps/">link</a>
链接到另一个页面
但当我想链接回索引页面时,我必须使用<a href="../index/">link</a>
。我搜索了一个解决方案,发现:
<spring:url value='/apps' var="apps_url" />
<a href="${apps_url}">link</a>
但是春天:网址总是解析为http://localhost:8080/myApp/
- 我目前所在的网页。另外,当我只使用这样的链接:<a href="/otherSite">link</a>
时,它总是解析为http://localhost:8080/otherSite
,而不是像我预期的那样http://localhost:8080/myApp/otherSite
。如何让我的链接工作?是http://localhost:8080/myApp
隐式定义为我的上下文还是可以/应该更改为http://localhost:8080/
?
此外,本地tomcat服务器上的URL与Web应用程序发布时的URL之间是否存在任何连接?
以下是我的一些应用程序文件:
servlet-context.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->
<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />
<context:component-scan base-package="myApp" />
<tx:annotation-driven transaction-manager="transactionManager"/>
<!-- Handles HTTP GET requests for /resources/** and /css/** by efficiently
serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />
<resources mapping="/css/**" location="/css/" />
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".xhtml" />
</beans:bean>
</beans:beans>
摘自web.xml:
<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>
<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Processes application requests -->
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
答案 0 :(得分:11)
最好将所有链接设置如下
<a href="${pageContext.servletContext.contextPath}/othersite"> Other site </a>
$ {pageContext.servletContext.contextPath} 始终为您的应用程序提供root权限,当您开发使用http://localhost:8080/myApp
时,您的应用程序根目录为 / myapp ,但是当您想要将应用程序投入生产时,通常您的应用程序根目录 / ,使用 $ {pageContext.servletContext.contextPath} ,在链接之前确保它可以在两者中工作例
答案 1 :(得分:3)
当面临同样的问题时,我使用c liblary:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<a href="<c:url value="/otherSite"/>"> Other site </a>
答案 2 :(得分:3)
这应该可以解决问题:
<spring:url value="/some_link" context="myApp" var="apps_url" />
<a href="${apps_url}">link</a>
apps_url应该等于:http://localhost:8080/myApp/some_link
答案 3 :(得分:2)
Tomcat可以同时执行许多Web应用程序。考虑一下情景:
URL http://localhost:8080/将获取对tomcat的请求,并且tomcat必须决定三个应用程序中的哪一个应该为请求提供服务,因为URL无法识别应用程序请求将由tomcat路由到ROOT.war是tomcat中的根Web应用程序。
如果你的appA.war中有一个带有<a href="/otherSite">link</a>
的JSP,那么解析输出的Web浏览器会认为该请求应该提交给服务器的根目录,因为href以/因此浏览器开头当请求到达tomcat tomcat时假设/ otherSite正在引用一个名为otherSite.war的web应用程序但是当然不存在这个问题时,请将to http://localhost:8080/otherSite放到网址中http://localhost:8080/appA/otherSite。
如果您使用<a href="otherSite">link</a>
,则浏览器会认为这是相对网址,因此会将请求发送至http://localhost:8080/appA,因为生成网址的网页是在上下文{{3}之外提供的}
因此,一般来说,您需要确保JSP页面中的URL是相对的,或者将上下文名称添加到生成的URL中,这是<spring:url />
和<c:url />
标记的作用。
本地tomcat服务器上的url与之间是否有任何连接 web应用程序在发布后会有什么用?
上下文的URL与tomcat webapps文件夹中war文件的名称相同,除非您在server.xml或context.xml文件中更改了该文件。