- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我是 Spring MVC 框架的新手。我正在尝试在 Eclipse Juno 和 Tomcat(V 7.0.61) 中使用 Spring 4 设置示例代码库。我尝试了不同论坛中所述的不同选项,但没有一个有效。非常感谢任何解决此问题的帮助!
下面是代码:
Web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>Spring MVC Application</display-name>
<servlet>
<servlet-name>HelloWeb</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>HelloWeb</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
HelloWeb-servlet.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:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">
<context:component-scan base-package="com.example.HelloController" />
<!-- <mvc:default-servlet-handler /> -->
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
HelloController.java
package com.example;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
@RequestMapping("/hello")
public class HelloController{
@RequestMapping(method = RequestMethod.GET )
public String printHello(ModelMap model) {
model.addAttribute("message", "Hello Spring MVC Framework!");
return "hello";
}
}
服务器日志:
May 5, 2015 5:26:32 PM org.apache.tomcat.util.digester.SetPropertiesRule begin
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:HelloWeb' did not find a matching property.
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Server version: Apache Tomcat/7.0.61
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Server built: Mar 27 2015 12:03:56 UTC
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Server number: 7.0.61.0
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: OS Name: Windows 7
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: OS Version: 6.1
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Architecture: x86
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Java Home: C:\Program Files (x86)\Java\jdk1.6.0_31\jre
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: JVM Version: 1.6.0_31-b05
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: JVM Vendor: Sun Microsystems Inc.
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: CATALINA_BASE: C:\U175827\Workspaces\jBpm\.metadata\.plugins\org.eclipse.wst.server.core\tmp0
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: CATALINA_HOME: C:\U175827\apache-tomcat-7.0.61
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: -Dcatalina.base=C:\U175827\Workspaces\jBpm\.metadata\.plugins\org.eclipse.wst.server.core\tmp0
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: -Dcatalina.home=C:\U175827\apache-tomcat-7.0.61
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: -Dwtp.deploy=C:\U175827\Workspaces\jBpm\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: -Djava.endorsed.dirs=C:\U175827\apache-tomcat-7.0.61\endorsed
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: -Dfile.encoding=Cp1252
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: -Xbootclasspath:C:\Program
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: Files
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: (x86)\Java\jdk1.6.0_31\jre\lib\resources.jar;C:\Program
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: Files
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: (x86)\Java\jdk1.6.0_31\jre\lib\rt.jar;C:\Program
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: Files
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: (x86)\Java\jdk1.6.0_31\jre\lib\jsse.jar;C:\Program
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: Files
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: (x86)\Java\jdk1.6.0_31\jre\lib\jce.jar;C:\Program
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: Files
May 5, 2015 5:26:32 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: (x86)\Java\jdk1.6.0_31\jre\lib\charsets.jar;C:\U175827\jboss-5.1.0.GA-jdk6\jboss-5.1.0.GA\common\lib\servlet-api.jar
May 5, 2015 5:26:32 PM org.apache.catalina.core.AprLifecycleListener lifecycleEvent
INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files (x86)\Java\jdk1.6.0_31\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/U175827/eclipse/jre/bin/client;C:/U175827/eclipse/jre/bin;C:/U175827/eclipse/jre/lib/i386;C:\Program Files (x86)\Java\jdk1.6.0_31\bin;C:\Program Files (x86)\Java\jdk1.6.0_31\jre\bin;C:\Oracle\product\11.2.0\client_1\bin\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft Application Virtualization Client;C:\Program Files\Citrix\ICAService\;C:\Program Files\Citrix\System32\;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Common Files\Citrix\System32\;C:\U175827\unix-utils;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\U175827\eclipse;;.
May 5, 2015 5:26:32 PM org.apache.coyote.AbstractProtocol init
INFO: Initializing ProtocolHandler ["http-bio-8082"]
May 5, 2015 5:26:32 PM org.apache.coyote.AbstractProtocol init
INFO: Initializing ProtocolHandler ["ajp-bio-8010"]
May 5, 2015 5:26:32 PM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 1809 ms
May 5, 2015 5:26:32 PM org.apache.catalina.core.StandardService startInternal
INFO: Starting service Catalina
May 5, 2015 5:26:32 PM org.apache.catalina.core.StandardEngine startInternal
INFO: Starting Servlet Engine: Apache Tomcat/7.0.61
May 5, 2015 5:26:33 PM org.apache.tomcat.websocket.server.WsSci onStartup
INFO: JSR 356 WebSocket (Java WebSocket 1.1) support is not available when running on Java 6. To suppress this message, run Tomcat on Java 7, remove the WebSocket JARs from $CATALINA_HOME/lib or add the WebSocket JARs to the tomcat.util.scan.DefaultJarScanner.jarsToSkip property in $CATALINA_BASE/conf/catalina.properties. Note that the deprecated Tomcat 7 WebSocket API will be available.
May 5, 2015 5:26:33 PM org.apache.catalina.util.SessionIdGeneratorBase createSecureRandom
INFO: Creation of SecureRandom instance for session ID generation using [SHA1PRNG] took [329] milliseconds.
May 5, 2015 5:26:36 PM org.apache.catalina.core.ApplicationContext log
INFO: No Spring WebApplicationInitializer types detected on classpath
May 5, 2015 5:26:36 PM org.apache.catalina.core.ApplicationContext log
INFO: Initializing Spring FrameworkServlet 'HelloWeb'
May 5, 2015 5:26:36 PM org.springframework.web.servlet.DispatcherServlet initServletBean
INFO: FrameworkServlet 'HelloWeb': initialization started
May 5, 2015 5:26:36 PM org.springframework.web.context.support.XmlWebApplicationContext prepareRefresh
INFO: Refreshing WebApplicationContext for namespace 'HelloWeb-servlet': startup date [Tue May 05 17:26:36 IST 2015]; root of context hierarchy
May 5, 2015 5:26:36 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
INFO: Loading XML bean definitions from ServletContext resource [/WEB-INF/HelloWeb-servlet.xml]
May 5, 2015 5:26:38 PM org.springframework.web.servlet.DispatcherServlet initServletBean
INFO: FrameworkServlet 'HelloWeb': initialization completed in 1750 ms
May 5, 2015 5:26:38 PM org.apache.coyote.AbstractProtocol start
INFO: Starting ProtocolHandler ["http-bio-8082"]
May 5, 2015 5:26:38 PM org.apache.coyote.AbstractProtocol start
INFO: Starting ProtocolHandler ["ajp-bio-8010"]
May 5, 2015 5:26:38 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 5487 ms
May 5, 2015 5:26:45 PM org.springframework.web.servlet.PageNotFound noHandlerFound
WARNING: No mapping found for HTTP request with URI [/HelloWeb/hello] in DispatcherServlet with name 'HelloWeb'
我正在使用的网址:
http://localhost:8082/HelloWeb/hello
最佳答案
您需要将其添加到您的web.xml
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/HelloWeb-servlet.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
关于java - org.springframework.web.servlet.PageNotFound noHandlerFound警告: No mapping found for HTTP request with URI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30052420/
我正在尝试设置一个在我的 Spring WebMVCConfig 中未找到的页面,它无法正常工作.. 这是我的配置: @Configuration @EnableWebMvc @PropertySou
我发现很多类似的问题都询问了我遇到的问题,并尝试了很多解决方案,但似乎都不起作用。 最奇怪的是,我的一位同事可以运行该程序,因此代码不是问题。 我收到的错误是当我运行应用程序时,我无法访问 welco
这似乎是一个简单的问题,但我们无法在互联网上的任何地方找到它。 我们正在使用 Spring Security 3.2,我们希望能够在收到 spring 消息时打印远程主机的 IP: WARN [or
我知道这个问题被问过很多次,我已经尝试过 所有可能的解决方案仍然存在问题。 实际上,同一项目在Tomcat 8中运行时出现0个错误,而该错误是直接从netbeans部署的。我在eclipse中创建了一
我尝试 spring 3 mvc 这个包是org.spring.test 和代码是 @Controller @RequestMapping("/welcome") public class Welco
我尝试用我在 stackoverflow 中遇到的所有解决方案来解决这个问题,但没有一个对我有用 这是我的 web.xml: appServlet org
我正在尝试使这个示例起作用: http://www.tutorialspoint.com/spring/spring_mvc_hello_world_example.htm 在 ubuntu 15.1
我正在尝试使用 Maven 构建一个小型 Spring Restful Web 服务。我已经编写了代码,但不确定为什么它会抛出错误“未找到带有 URI 的 HTTP 请求的映射”。 我搜索了其他类似的
我正在学习 Spring boot + MVC 的工作原理。我可以在屏幕上显示一条消息,但我不能修改样式。 js e css 文件不与 Spring 映射。 2020-04-17 14:38:29.1
我想在 spring 找不到请求处理程序时记录日志,因为例如,客户端试图使用拼写错误的必需参数访问我们的 REST 服务。 推荐的方法是什么? 最佳答案 我认为它看起来像这样: @Exception
我已点击链接Example Link 创建登录应用程序。我没有在项目中使用maven。 当我运行应用程序时http://localhost:9889/SpringMVCDemo/login 重定向到下
我正在使用 spring MVC 和 spring security 构建一个应用程序,当我输入用户名和密码时,我无法导航到下一页(索引)。这是我的代码,请帮助我。 spring-servlet
我在我的 Spring MVC Controller 中遇到了一个奇怪的问题。 我的 webapp 文件夹中有四个页面 @Controller public class WelcomeControll
我正在尝试提交一个简单的登录表单,但服务器一直以“不支持请求方法‘POST’”作为警告进行响应。问题不在于表单 acion 没有响应,事实上方法响应和执行特征但无法返回结果以及我收到此警告的地方。 我
我正在尝试运行第一个 Spring 3 MVC 设置。 我的应用在 tomcat 上运行,服务器上下文为“grapevine” 出于测试目的,我正在尝试从 http://localhost:8080/
这个问题在这里已经有了答案: Why does Spring MVC respond with a 404 and report "No mapping found for HTTP request
启动服务器时出现此异常:HTTP 状态 405 - 不支持请求方法“GET” 我的 Controller 是: @Controller public class HomeController {
我被困在这一点上,无法找到确切的原因。但是,我发现了很多类似的问题,但我的问题似乎仍然没有解决。我在 sts 4 中运行它并添加了一个 tomcat 服务器 9.0在本地运行它。我发现的最接近的问题是
我正在 try catch 所有 Spring MVC 错误并显示自定义错误页面,以避免呈现 native Tomcat 页面。 我尝试使用几个@ExceptionHandler,例如: @Excep
我正在使用 spring-security-4.2.6v。 我面临的问题是,当我进入登录页面并输入有效凭据并提交时,服务器返回 404 错误和警告消息: WARN [PageNotFound] No
我是一名优秀的程序员,十分优秀!