使用Thymeleaf创建的表单返回null对象

时间:2015-07-16 11:09:25

标签: java spring forms model-view-controller thymeleaf

我已经按照所有教程进行了操作,但我仍然遇到一个问题,即无法使用Spring MVC从表单到控制器获取对象。可能是这样的?我正在使用Thymeleaf来格式化我的jsp页面。

这是视图

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
  <title></title>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h1>Form</h1>
<form action="" th:action="@{/increaseprice}" th:object="${priceIncrease}" method="post">
    <input type="text" th:field="*{message}" />
  <p><input type="submit" value="Submit" />
</form>
</body>
</html>

控制器

package com.springapp.mvc;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import store.service.PriceIncrease;

import org.apache.commons.logging.*;

@Controller
public class PriceIncreaseFormController{

    protected final Log logger = LogFactory.getLog(getClass());

    @RequestMapping(value="/increaseprice.html", method = RequestMethod.POST)
    public String increasePrice(@ModelAttribute("priceIncrease") PriceIncrease priceIncrease){
        int increase = priceIncrease.getPercentage();
        logger.info("Percentage " + increase);
        logger.info("Message " + priceIncrease.getMessage());
        return "priceincrease";
    }

    @RequestMapping(value="increaseprice.html", method = RequestMethod.GET)
    public String showIncreasePrice(Model model){
        PriceIncrease priceIncrease = new PriceIncrease("testmessage");
        model.addAttribute("priceIncrease", priceIncrease);

        return "priceincrease";
    }
}

Java类

package store.service;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

public class PriceIncrease {
    protected final Log logger = LogFactory.getLog(getClass());

    private int percentage;
    private String message;

    public PriceIncrease(){

    }

    public PriceIncrease(String message){
        this.message = message;
    }

    public void setPercentage(int i){
        percentage = i;
        logger.info("Percentage set to " + i);
    }

    public int getPercentage(){
        return  percentage;
    }

    public String getMessage(){
        return this.message;
    }

    public void setMessage( String message ){
        this.message = message;
    }
}

1 个答案:

答案 0 :(得分:0)

我相信你不需要@ModelAttribute因为Spring MVC非常聪明,可以将表单映射到你的PriceIncrease控制器参数。