当前位置: 首页 > 知识库问答 >
问题:

GET/springmvc/form.jsp没有映射

璩涛
2023-03-14

我正在尝试使用spring MVC。我的问题是,在我的控制器中没有请求映射工作,只有我的主页链接:“/”工作。

@Controller
public class HelloWoldController {

     @RequestMapping("/")
    public String showPage() {
        return "main";
    }


    @RequestMapping("/showForm")
    public String showForm() {
        return "form";
    }

}

我的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>springMVC</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>/WEB-INF/spring-mvc-demo-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>

</web-app>
<?xml version="1.0" encoding="ISO-8859-1"?>
<beans
    xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.springframework.org/schema/beans">

    <context:component-scan
        base-package="com.kaygi22.springmvc" />

    <mvc:annotation-driven />
<bean
    class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property value="/WEB-INF/view/" name="prefix" />
    <property value=".jsp" name="suffix" />
</bean>

2019年5月9日下午4:55:42 org.springframework.web.servlet.dispatcherservlet noHandlerFound警告:GET/springmvc/showform没有映射

共有1个答案

穆轶
2023-03-14

我也遇到了同样的问题,我做了以下工作:清理您的项目:在eclipse中,转到Project-->clean,右键单击project并刷新它。

 类似资料:
  • http://some-amazon-link:8080/the-war-name/login 现在我正在纠结如何在Spring MVC项目中添加“/the-war-name/”以及在哪里添加“/the-war-name/”。 它在 null

  • 问题内容: 我确信这是有充分理由的,但是有人可以解释一下为什么缺少接口或任何类似方法吗? 集合似乎很适合放入东西,但我找不到从其中检索单个项目的优雅方法。 如果我知道我想要第一个项目,则可以使用,但否则似乎必须转换为数组才能在特定索引处检索项目? 从集合中检索数据的适当方法是什么?(除了使用迭代器之外) 我敢肯定,将其排除在API中这一事实意味着有充分的理由不这样做-有人可以启发我吗? 编辑: 这

  • 我工作的tkinter模块在python 3.3我是相对较新的,这是与条目框工作。有人能给我解释一下为什么吗?我做了一个类似的程序,只有一个条目运行良好。

  • 我在大多数调用中使用了改型,但在其中一种情况下,我在参数中提供了完整的路径。我的URL是这样的http://www.example.com/android.json。这个URL是完整的,所以我必须在运行时路径它。我按照https://medium.com/@kevintcoughlin/dynamic-endpoints-with-retrofit-a1f4229f4a8d中的建议实现了endpo

  • 我目前正在Spring Boot中开发常见问题Web应用程序。我的索引页面运行良好,但如果我想打开另一个超文本标记语言页面,我的浏览器中会出现404未找到错误页面,Intellij说: 我怎样才能解决这个问题? 索引控制器: 指数html xml 应用属性 我的所有HTML文件都位于/resources/templates路径中。