我是JavaEE开发的新手,我想制作简单的" hello world" - spring,hibernate应用程序,我已经将类映射到hibernate,dao类等...问题是我想尝试我的Controller,我不知道如何制作它,但起初我有另一个问题 - > property: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
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,任何人都可以解释我的错误吗?它不应该将我重定向到索引页面吗?非常感谢:)。
答案 0 :(得分:1)
你正在点击错误的网址。如果您的项目名称是WebProject,则URL将为:
localhost:8080/WebProject/users
答案 1 :(得分:0)
redirect:/index
会将您重定向到网址/index
(更改浏览器中的网址),
不是为了观点。您需要处理该URL并解析该视图。
添加:
@RequestMapping("/index")
public String index(ModelMap map) {
return "index";
}
如果你有一个视图解析器,它将加载索引页。