gpt4 book ai didi

java - MVC 应用程序无法执行 RequestMapping

转载 作者:行者123 更新时间:2023-12-01 12:48:47 24 4
gpt4 key购买 nike

我是javaEE开发的新手,我想制作简单的“hello world” - spring,hibernate应用程序,我已经将类映射到hibernate,dao类等...问题是我想尝试我的 Controller 我不知道如何制作它,但首先我有另一个问题 ->属性: hibernate.dialect 已弃用 ->这是错误的吗???这个 cfg 文件适合 postgresql 吗?

hibernate.cfg.xml 文件:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>

<property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<property name="hibernate.connection.username">****</property>
<property name="hibernate.connection.password">****</property>
<property name="hibernate.connection.url">jdbc:postgresql://localhost:8080/come_to_blog_db</property>

<property name="hibernate.show_sql">false</property>
<property name="connection.pool_size">1</property>

<mapping class="com.lime.model.User" />

</session-factory>
</hibernate-configuration>

但现在我的 Controller 类:

@Controller
public class UserController {

@Autowired
UserService userService;

@RequestMapping(value = "/user", method = RequestMethod.GET)
public String showUsers(ModelMap map) {
return "redirect:/index";
}

}

hello world at localhost:8080 正在工作,但是如果我想访问 localhost:8080/user,它会显示错误 404,谁能解释一下我做错了什么?它不应该将我重定向到索引页面吗?非常感谢:)

最佳答案

您访问了错误的网址。如果您的项目名称是 WebProject,则 url 将为:

localhost:8080/WebProject/user

关于java - MVC 应用程序无法执行 RequestMapping,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24417617/

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