0

私はSpring mvcが初めてで、SpringTemplateProjectを使用してプロジェクトを作成し、その中で休止状態を使用しました。

フォームを作成し、投稿時に値がデータベースに挿入されますが、問題はそれらの値を POST に表示できないことです。

これがコードです。

//コントローラ

package com.projects.data;

import java.util.Locale;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.ui.ModelMap;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

import com.projects.data.*;

@Controller
public class HomeController {

private static final Logger logger = LoggerFactory.getLogger(HomeController.class);

@Autowired
ServiceImpl service;


@RequestMapping(value = "/", method = RequestMethod.GET)        
public String customer(Locale locale, Model model) {
    logger.info("Welcome home! The client locale is {}.", locale);
    return "home";
}

@RequestMapping(value = "/customer", method = RequestMethod.POST)
   public String addCustomer(@ModelAttribute("customer") Customer customer,Model model)
{
    service.addCustomer(customer);
            return "customer/customer";
}
}

ホーム.jsp

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<%@ page session="false" %>
<html>
<head>
<title>Home</title>
</head>
<body>
<spring:url var="customer" value="/customer"/>
<form:form action="${customer}" method="post" modelAttribute="customer" commandName="custform">
<form:label path="custid">Id:</form:label>
<form:input path="custid"/> <br>

<form:label path="name">Name:</form:label>
<form:input path="name"/> <br>

<form:label path="age">Age:</form:label>
<form:input path="age"/> <br>

<input type="submit" value="Save"/>    
</form:form>
</html>

customer.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!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=ISO-8859-1">
<title>Submitted Information</title>
</head>
 <body>

<h2>Submitted Information</h2>
<table>
 <tr>
    <td>Customer id</td>
    <td>${custform.custid}</td>
 </tr>
 <tr>
    <td>Name</td>
    <td>${custform.name}</td>
 </tr>
 <tr>
    <td>Age</td>
    <td>${custform.age}</td>
 </tr>
 </table> 
 </body>
 </html>

データベースにデータが挿入されていますが、表示されていません。この問題の解決を手伝ってください。

@modelAttribute を使ってみた

model.addAttribute("custid",customer.getCustId());
model.addAttribute("name", customer.getName());
model.addAttribute("age", customer.getAge());

しかし、これもうまくいかないようです。

モデル クラス

package com.projects.data;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

@Entity
@Table(name="customer")
public class Customer {
    @Id
    @Column(name="CUST_ID")
    int custId;

    @Column(name="NAME")
    String name;

    @Column(name="AGE")
    int age;

    public Customer(int custId,String name,int age)
    {
        this.custId=custId;
        this.name=name;
        this.age=age;
    }

    //getter and setter methods

    public Customer() {
        // TODO Auto-generated constructor stub
    }

    public int getCustId() {
        return custId;
    }
    public void setCustId(int custId) {
        this.custId = custId;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public int getAge() {
        return age;
    }
    public void setAge(int age) {
        this.age = age;
    }

}
4

2 に答える 2

0

から削除custform.${custform.age}、 jsp${custform.name}${custform.custid}、コントローラにあるままの model.addAttribute を保持します。in jspageを使用して顧客からアクセスできるはずです。${age}

コントローラ:

@RequestMapping(value = "/customer", method = RequestMethod.POST)
   public String addCustomer(@ModelAttribute("customer") Customer customer,Model model)
{
    service.addCustomer(customer);
    model.addAttribute("custid",customer.getCustId());
    model.addAttribute("name", customer.getName());
    model.addAttribute("age", customer.getAge());
    return "customer/customer";
}

JSP:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!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=ISO-8859-1">
<title>Submitted Information</title>
</head>
 <body>

<h2>Submitted Information</h2>
<table>
 <tr>
    <td>Customer id</td>
    <td>${custid}</td>
 </tr>
 <tr>
    <td>Name</td>
    <td>${name}</td>
 </tr>
 <tr>
    <td>Age</td>
    <td>${age}</td>
 </tr>
 </table> 
 </body>
 </html>

また

単にmodel.addAttribute("custform",customer);コントローラーで行い、他のすべてをそのままにしておきます。

コントローラ

@RequestMapping(value = "/customer", method = RequestMethod.POST)
   public String addCustomer(@ModelAttribute("customer") Customer customer,Model model)
{
    service.addCustomer(customer);
    model.addAttribute("custform",customer);
    return "customer/customer";
}

JSP 問題と同じにしてください。

于 2013-05-13T10:44:02.213 に答える
0

試す

@RequestMapping(value = "/customer", method = RequestMethod.POST)
public ModelAndView addCustomer(@ModelAttribute("customer") Customer customer)
{
    service.addCustomer(customer);

    Model model = new ModelMap();
    model.addAttribute("custid",customer.getCustId());
    model.addAttribute("name", customer.getName());
    model.addAttribute("age", customer.getAge());


    return new ModelAndView("customer/customer", model);
}    

ところで: より良いアプローチは、投稿後に顧客のショー ページにリダイレクト (http コード 303) することです。その後、ユーザーは、更新のたびに新しい顧客を作成することなく、ページをリロード (F5) できます。

于 2013-05-13T10:53:47.173 に答える