当我的jsp文件位于WEB-INF文件夹(如/WEB-INF/file.jsp)中时,我可以从本地主机访问它们:8080 / ProjectCtxtRoot
/,但是如果将它们放在/ WEB-中,则无法访问它们。 INF / jsp / file.jsp?
我更改了web.xml中的welcome-list标记中的路径,如下所示
<welcome-file-list>
<welcome-file>/JSP/fileName.jsp</welcome-file>
</welcome-file-list>
我还更改了dispatcher-servlet.xml,如下所示
<bean id="jspViewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/jsp/"
p:suffix=".jsp" />
仍然不起作用。以上情况使用的网址是
localhost:8080/ContextRoot/jsp/
localhost:8080/ContextRoot/jsp/fileName.jsp
localhost:8080/ContextRoot/jsp/fileName
并且不适用于上述任何网址。
但它在工作时
<welcome-file-list>
<welcome-file>/fileName.jsp</welcome-file>
</welcome-file-list>
dispatcher-servlet.xml如下
<bean id="jspViewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/"
p:suffix=".jsp" />
用于上述情况的网址是localhost:8080 / ContextRoot /,并且可以正常工作。
我使用的是tomcat v 7.0服务器。我在Eclipse IDE中刷新项目,然后清理,构建,使用mvn clean
install构建war,然后从tomcat Manager主页中选择war并进行部署。我每次都这样做。
这就是diapatcher-servlet.xml在整个过程中的外观。我只是像上面所说的那样更改了特定的部分
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">
<mvc:annotation-driven/>
<context:component-scan base-package="com.projectName.www" />
<!-- Factory bean that creates the Mongo instance -->
<bean id="mongo" class="org.springframework.data.mongodb.core.MongoFactoryBean">
<property name="host" value="localhost" />
</bean>
<!-- MongoTemplate for connecting and quering the documents in the database -->
<bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate">
<constructor-arg name="mongo" ref="mongo" />
<constructor-arg name="databaseName" value="tableName" />
</bean>
<!-- Use this post processor to translate any MongoExceptions thrown in @Repository annotated classes -->
<bean class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor" />
<bean id="jspViewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/jsp/"
p:suffix=".jsp" />
<!-- <bean class="org.springframework.web.servlet.view.tiles2.TilesViewResolver"/>
<bean class=
"org.springframework.web.servlet.view.tiles2.TilesConfigurer"> -->
<!-- <property name="definitions">
<list>
<value>/WEB-INF/views/views.xml</value>
</list>
</property>
</bean> -->
</beans>
这就是我的web.xml的样子
<web-app>
<!-- <display-name>Archetype Created Web Application</display-name> -->
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!-- <init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/src/main/webapp/WEB-INF/dispatcher-servlet.xml</param-value>
</init-param>-->
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/dispatcher-servlet.xml</param-value>
</context-param>
<!-- <listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener> -->
<welcome-file-list>
<welcome-file>/fileName.jsp</welcome-file>
</welcome-file-list>
</web-app>
好。当我将整个jsp文件夹从/webapp/WEB-
INF/jsp/fileName.jsp移到/webapp/jsp/fileName.jsp时,它可以工作。我想知道1.为什么现在可以使用?2.这是做事的正确方法吗?3.在url为localhost:8080
/ CtxtRoot / jsp /或localhost:8080 / CtxtRoot / jsp /
search.jsp时有效,但不适用于localhost:8080 / AnnaUnivResults / jsp / search。为什么会这样呢?
我认为这里有几个问题:
不幸的是,我无法为您提供所有详细信息,很多弹簧是可配置的,因此我的解释仅涵盖最基本的情况。如果有人发现错误,请告诉我,我会解决。
对于路径,逐步思考可能会有所帮助。
localhost:8080/CtxtRoot/jsp/
,则服务器上可以有一个Web应用程序,其上下文根为“ CtxtRoot”,它将处理该请求。另外,您可能有一个上下文带有“”的应用程序,并且可以处理该请求。这取决于您如何配置服务器,默认情况下,Tomcat将使用war名称作为上下文根。localhost:8080/CtxtRoot/jsp/
,Web应用程序将基于“ jsp”作为路径路由事物。localhost:8080/CtxtRoot/jsp/
,并且上下文根是“ CtxtRoot”,则Web应用程序会将“ / jsp /”与所有servlet映射进行比较。对WEB-INF中的静态资源的请求将始终被拒绝,但是Servlet和过滤器可以并且确实从WEB-INF返回数据。 http://localhost:8080/app/mvc/sales
。 在您的示例中,您请求的是localhost:8080 / ContextRoot / jsp / fileName,因此看起来“
CtxRoot”是上下文根,您的Servlet的路径是“
/”,因此它将之后的内容传递给控制器。当DispatcherServlet收到请求时,它正在搜索将“
jsp”作为路径处理的控制器。由于您一无所有,因此它决定将其视为资源路径。它使用视图解析器,并形成了/WEB-
INF/jsp/jsp/fileName.jsp路径,该路径显然不存在。
假设您改为请求localhost:8080 / ContextRoot /
fileName,该请求将到达DispatcherServlet,它将找不到任何将“
fileName”作为路径处理的Controller,因此会将其视为资源。它会形成路径/WEB-INF/jsp/fileName.jsp,并返回结果。
但是,您的Web
xml未配置为初始化spring。因此,您的Web应用程序实际上在对待您的每个请求,就好像它们是相对于Web应用程序根目录的资源一样。我相信,如果您使用Spring正确初始化了该请求,则它可能会起作用。
这是一个很好的例子:
http://www.mkyong.com/spring3/spring-3-mvc-hello-world-
example/
请注意,他的Web
xml具有ContextLoaderListener,该注释在您的注释中已注释掉,这对于在Web应用程序中初始化spring是必不可少的。我还可以在调度程序中看到带有/
src / main / resources路径的注释,但是应该将Web
xml中的所有路径都相对于Web应用程序根目录。在运行时,Web服务器不了解您的项目,并且“
src”不是Web应用程序根目录中的目录。还要注意,您的MVC内容可以具有与主spring上下文不同的应用程序上下文,这很常见。
我认为,如果您执行以下操作,它将起作用:
本地主机:8080 / CtxtRoot / fileName
另外,您一直在谈论欢迎文件,但是您在提供资源的完整路径。仅当用户向目录的根目录发出请求时,欢迎文件才会起作用,如下所示:
localhost:8080/CtxtRoot/
该请求将转发到欢迎文件。我认为,只有您尝试此操作时,jsp恰好位于应用程序的根目录中,并被配置为欢迎文件,因此它可以正常工作。当它“工作”时,它实际上并没有使用spring来返回它。
祝你好运。
我在web.xml中更改了welcome-list标记中的路径,如下所示 我还更改了dispatcher-servlet.xml,如下所示 但还是没用。用于上述大小写的Url是 而且它对上面的任何URL都不起作用。 但它起作用的时候 我使用TomcatV7.0服务器。我在Eclipse IDE中刷新我的项目,然后清理它,构建它,使用mvn clean install构建war,然后从tomcat
如何将本地存储文件夹中的JSP文件包含在WEB-INF下? 我在config.properties定义了绝对路径${externalFolder}到包含外部jsp文件的文件夹,控制器映射到 /page和jsp页面page.jsp在WEB-INF/jsp/目录中。 在此文件页面中。我想调用的jsp: WEB-INF/jsp/page。jsp 谢谢你的帮助。
我刚刚开始使用JSP,遇到了一个问题。 据我所知,WEB-INF下的JSP页面可以通过浏览器在localhost中使用URL进行访问: 但是,如果我在WEB-INF文件夹(即'MyFolder')中创建另一个子文件夹,并尝试通过URL访问相同的JSP页面: 它给出了一个错误404。JSP文件导航系统与HTML文件导航系统有区别吗? 编辑:我正在使用servlet来显示我的JSP页面: EDIT2:
问题内容: 我的App Engine项目的war / WEB-INF文件夹中有一个文件。我在FAQ中读到,您可以在servlet上下文中从那里读取文件。我不知道如何形成资源的路径: 我将如何构造到该资源的路径以与File()一起使用,就像上面一样? 问题答案: 有两种方法可以做到这一点。只要扩展WAR文件(一组文件而不是一个.war文件),就可以使用以下API: http://tomcat.apa
问题内容: 我正在使用Eclipse,我需要能够将Java库(JAR文件)添加到Web应用程序的文件夹中。我该如何实现? 问题答案: 将jar文件添加到您的WEB-INF / lib文件夹中。 在Eclipse中右键单击您的项目,然后转到“构建路径>配置构建路径” 添加“ Web应用程序库”库 这将确保所有WEB-INF / lib jar都包含在类路径中。
> “在”webinf“标记中包括name=”${war.dir}/groupquoteui.properties“,但它不起作用。 标记中还包含=“${war.dir}/groupquoteui.properties”。 还有这个在“webinf”文件夹里: 那么我应该做些什么来将这个文件包含到WAR的WEB-INF目录中。包括所有其他目录和web.xml文件。