gpt4 book ai didi

java - Spring MVC Controller 问题 : No mapping found for HTTP request with URI

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:03:31 25 4
gpt4 key购买 nike

是的。我知道这是一个熟悉的问题。我研究了其他解决方案,但它们对我没有帮助。我正在尝试使用 Spring 4、Hibernate 5、My Sql 和 Angular JS 1.x 构建 Spring MVC 应用程序

问题:如图所示,当我运行应用程序时,它按预期解析为 index.jsp 文件,然后我输入 'http://localhost:8080/TimeLee/user/test' 获取网页 'adduser.html' 。 Boom,它抛出以下错误“在名为“mvc-dispatcher”的 DispatcherServlet 中找不到带有 URI [/TimeLee/WEB-INF/views/adduser.html] 的 HTTP 请求的映射”。我检查了 Controller 映射,一切看起来都很好。

Folder Structure and Error message from log

Browser Output

用户 Controller :

package com.timelee.users.controllers;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.ModelAndView;

import com.timelee.users.model.User;
import com.timelee.users.services.UserService;

@RestController
@RequestMapping("/user")
public class UserController
{
@Autowired
private UserService userService;

@RequestMapping(value="/adduser",method=RequestMethod.POST)
public void saveUser(@RequestBody User user)
{
userService.saveUser(user);
}


@RequestMapping(value="/getuser",method=RequestMethod.GET)
public @ResponseBody User getUser(@RequestParam("userId") String userId)
{
return userService.getUser(userId);
}

@RequestMapping(value="/test",method=RequestMethod.GET)
public ModelAndView test()
{
ModelAndView modelAndView=new ModelAndView("adduser");
return modelAndView;
}

@RequestMapping(value="/test2",method=RequestMethod.GET)
public String test2()
{
return "adduser";
}

}

网络.xml

<web-app id="WebApp_ID" version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

<display-name>Spring Web MVC Application</display-name>

<servlet>
<servlet-name>mvc-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-config.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>


</web-app>

spring-mvc-config.xml

<beans xmlns="http://www.springframework.org/schema/beans" xmlns:tx="http://www.springframework.org/schema/tx" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">

<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/views/</value>
</property>
<property name="suffix">
<value>.html</value>
</property>
</bean>


<context:property-placeholder location="classpath:database.properties" />
<context:component-scan base-package="com.timelee.*" />


<tx:annotation-driven transaction-manager="transactionManager"/>


<!-- <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> -->

<bean id="dataSource" destroy-method="close" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="${jdbc.driverClassName}" />
<property name="url" value="${jdbc.url}"/>
<property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}"/>

</bean>



<bean id="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean" >
<property name="dataSource" ref="dataSource"/>
<property name="packagesToScan">
<list>
<value>com.timelee.timesheet.model</value>
<value>com.timelee.users.model</value>
<value>com.timelee.*</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">${hibernate.dialect}</prop>
<prop key="hibernate.show_sql">${hibernate.show_sql:false}</prop>
<prop key="hibernate.format_sql">${hibernate.format_sql:false}</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
</bean>

<bean id="transactionManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>

<bean id="persistenceExceptionTranslationPostProcessor"
class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor"/>

</beans>

最佳答案

添加<mvc:default-servlet-handler/>spring-mvc-config.xml文件。清理项目并重建它。这可能会解决您的问题。

关于java - Spring MVC Controller 问题 : No mapping found for HTTP request with URI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44209966/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com