的web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
<display-name>springsecuritydemo</display-name>
<!-- <welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list> -->
<servlet>
<description></description>
<display-name>offers</display-name>
<servlet-name>offers</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>offers</servlet-name>
<url-pattern>/DispatcherServlet</url-pattern>
</servlet-mapping>
</web-app>
提供-sevlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns = "http://www.springframework.org/schema/beans"
xmlns:context = "http://www.springframework.org/schema/context"
xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation = "http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.3.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:component-scan base-package="com.spring.security.web"></context:component-scan>
<mvc:annotation-driven></mvc:annotation-driven>
<bean name="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsps/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
这里有什么问题?我无法访问home.jsp。 我实际上是在春季3.0观看教程,我已经完成了视频中的显示。谁能在这里指出我的错误?
答案 0 :(得分:9)
问题在于servlet-mapping的url模式。
<url-pattern>/DispatcherServlet</url-pattern>
让我们说我们的控制器是
@Controller
public class HomeController {
@RequestMapping("/home")
public String home(){
return "home";
}
}
当我们在浏览器上点击某个网址时。调度程序servlet将尝试映射此URL。
我们的serlvet目前的网址格式为/Dispatcher
,这意味着资源来自{contextpath}/Dispatcher
但是当我们请求http://localhost:8080/home
时,我们实际上要求/
中的资源不可用。
所以要么我们需要通过执行
/
<url-pattern>/</url-pattern>
我们通过/Dispatcher/*
E.g
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID"
version="3.1">
<display-name>springsecuritydemo</display-name>
<servlet>
<description></description>
<display-name>offers</display-name>
<servlet-name>offers</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>offers</servlet-name>
<url-pattern>/Dispatcher/*</url-pattern>
</servlet-mapping>
</web-app>
并使用http://localhost:8080/Dispatcher/home
请求它
或者只是/
请求
http://localhost:8080/home
答案 1 :(得分:1)
答案 2 :(得分:1)
答案 3 :(得分:0)
org.glassfish.jersey.servlet.ServletContainer.class
在此删除.class
org.glassfish.jersey.servlet.ServletContainer 现在你不会得到
答案 4 :(得分:0)
答案 5 :(得分:0)
还有另一种方法可以解决此问题。 1)转到项目资源管理器。转到项目的目标文件夹,右键单击并删除目标文件夹。 2)右键单击您的项目,选择以Maven Build运行。 3)在控制台上获得Build Success之后;右键单击项目文件夹,然后选择刷新。 完成上述步骤后,尝试运行您的项目。您的问题现在应该已解决。
答案 6 :(得分:0)
我正在通过Intellij运行项目,并且在停止正在运行的服务器并重新启动它之后,出现了此错误。杀死所有Java进程并重新启动应用程序很有帮助。
答案 7 :(得分:0)
如果要在tomcat上使用springboot应用程序,我需要创建一个如下所示的附加类,并且可以正常工作:
@SpringBootApplication
public class SpringBootTomcatApplication extends SpringBootServletInitializer {
}
答案 8 :(得分:0)
我遇到了同样的问题,花了大约6个小时来解决。我找不到适合我情况的答案,因此也许对某人有用。
当我创建项目时,我在pom.xml中将GroupId指向“ myproject.myapp”,但是我没有在项目中使用该名称创建第一个“ prime”包,该主包中的其他包(例如/ src / main / app等)。当我创建主要软件包“ myproject.myapp”并将其他软件包移入其中时,问题得以解决。
答案 9 :(得分:0)
在接受过Spring webmvc 4.2.3的培训后,我正在使用Spring webmvc 5.2.3时,他们建议创建一个表格
<form:form modelAttribute="aNewAccount" method="get" action="/accountCreated">
那是导致“公开”错误的原因。
进行如下更改以使其起作用。看来上面的方法是罪魁祸首。
<form:form modelAttribute="aNewAccount" action="accountCreated.html">
实际上,如果声明正确,可以进一步探索表单注释中的method =“ post”:
@RequestMapping(value="/accountCreated", method=RequestMethod.POST)
答案 10 :(得分:0)
该网站运行良好,然后突然开始显示此错误404消息(原始服务器未找到目标资源的当前表示或不愿意透露该资源的存在),可能是因为切换了服务器并从Tomcat 9转发到8和7
就我而言,我只需要更新导致此错误的项目,然后重新启动特定的tomcat版本。在“ Maven更新项目”之后,您可能还需要进行Maven Clean和Maven安装。
答案 11 :(得分:0)
如果您有错误,则源为“服务器找不到目标资源的当前表示或不愿意透露其存在。”
然后检查此处给出的文件位置:
答案 12 :(得分:0)
我刚刚在我的项目中解决了这个问题。原来我的连接字符串有错字,并且与有效的数据库身份验证不同。证书。我这是愚蠢的错误,希望其他人可以通过阅读这篇文章来节省时间。