我正在尝试使用Hibernate在NetBeans 8.0.2上学习Spring MVC,坦率地说,我被困住了。任何帮助表示赞赏。我只是想做一个非常简单的“你好世界”型网站。
有人会在第一页上点击提交按钮,结果页面会有一个来自数据库的值列表。听起来很简单吧? 我在这里包含了5个非常短的文件,如果你这么倾向,希望能帮助你帮助我。 “web.xml”,“dispatcher-servlet.xml”,“index.jsp”,“TeamController.java”,“secondView.jsp”
我理解Spring MVC应该如何使用我的文件的方式如下......
1)从NetBeans运行项目,启动index.jsp文件。 这是因为咨询了Web.xml,其中包含以下行...
"<welcome-file>redirect.jsp</welcome-file>"
一旦咨询了redirect.jsp,我们就会发现它有以下内容......
"<% response.sendRedirect("index.htm"); %>"
因此,通过该重定向,我们将返回到具有以下内容的web.xml ...
"<servlet-name>dispatcher</servlet-name>"
"<url-pattern>*.htm</url-pattern>"
所以这个请求以index.htm的形式出现,它将由调度程序servlet处理。 在调度程序servlet的配置文件中,视图解析程序将添加以下内容... 号码:前缀= “/ WEB-INF / JSP /” p:suffix =“。jsp”/&gt; 所以index.htm变为/WEN-INF/jsp/index.jsp并且该页面被启动。
2)此时会启动index.jsp。此文件中唯一的内容是带有提交按钮的表单。目的只是让某人按下按钮,并在屏幕上返回数据库中的信息。我将Hibernate作为此Web项目的一部分,并且我已经基于DB表“Team”创建了一个java类“Team.java”。它填充了一些记录。 目前我所看到的是,一旦index.jsp出现并且我点击提交,它就会给出404.
这是表单显示的URL “host:port / HelloWebFour / index.htm” 如果我做一个视图源它将它显示为index.jsp。当我点击提交时,它会给这个网址带来404 “主持人:port / HelloWebFour / team?” 顺便说一下,“HelloWebFour”是我在NetBeans中的项目名称。 如果我的理解是正确的,或者我需要添加任何内容,我不确定发生了什么。任何帮助表示赞赏...... 非常短的代码文件在......下面。
“Web.xml”
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>*.htm</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>redirect.jsp</welcome-file>
</welcome-file-list>
</web-app>
“dispatcher-servlet.xml”
<?xml version='1.0' encoding='UTF-8' ?>
<!-- was: <?xml version="1.0" encoding="UTF-8"?> -->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd" xmlns:context="http://www.springframework.org/schema/context">
<context:component-scan base-package="testnew1" />
<bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>
<!--
Most controllers will use the ControllerClassNameHandlerMapping above, but
for the index controller we are using ParameterizableViewController, so we must
define an explicit mapping for it.
-->
<bean id="urlMapping"
class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="index.htm">indexController</prop>
</props>
</property>
</bean>
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/jsp/"
p:suffix=".jsp" />
<!--
The index controller.
-->
<bean name="indexController"
class="org.springframework.web.servlet.mvc.ParameterizableViewController"
p:viewName="index" />
</beans>
“index.jsp”
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>index.jsp - the submit page</title>
</head>
<body>
<h2>Hit submit to get DB information</h2>
<form:form method="GET" action="/HelloWebFour/team">
<table>
<tr>
<td>
<input type="submit" value="Submit"/>
</td>
</tr>
</table>
</form:form>
</body>
</html>
“TeamController.java”
package testnew1;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class TeamController {
@RequestMapping(value = "/team", method = RequestMethod.GET)
public String getTeam(@ModelAttribute("SpringWeb") Team team,
ModelMap model) {
model.addAttribute("city", team.getCity());
model.addAttribute("state", team.getState());
model.addAttribute("nickname", team.getNickname());
return "secondView";
}
}
“secondView.jsp”
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>secondView.jsp - the results page</title>
</head>
<body>
<h2>Database Information</h2>
<table>
<tr>
<td>City</td>
<td>${city}</td>
</tr>
<tr>
<td>State</td>
<td>${state}</td>
</tr>
<tr>
<td>Nickname</td>
<td>${nickname}</td>
</tr>
</table>
</body>
</html>
答案 0 :(得分:0)
到目前为止,我看到您提交到"/HelloWebFour/team
,但您的唯一请求处理程序方法已映射到/team
,请尝试提交到/team
。我没有在Dispatcher映射上使用任何前缀,因此可以在url上错过.htm
并结合未知请求URL /HelloWebFour/team
。
然后,如果以上解决方案之一工作,您的方法可能会失败,因为您期望一个名为Team的“SpringWeb”的modelAttribute,但您的表单实际上不发布任何数据,并且它的modelAttribute映射到“command”,默认值,因此如果发生这种情况,删除它可能会消除进一步的错误。