SPRING MVC, вставка ENUM в таблицу SQL и наличие раскрывающегося списка ENUM на странице JSP - PullRequest
0 голосов
/ 10 июня 2019

Эй, я работаю над базовым проектом CRUD, есть объект Coupon, который создается компанией, объект Coupon имеет параметр ENUM, я пытаюсь создать страницу JSP с входными данными, чтобы пользователь (компания) мог ввестивсе детали купона, а затем отправить его на сервер и обновить таблицу SQL,

Вот раздел JSP, который у меня есть, CouponType - это ENUM, до сих пор не хватает понятия, как его добавить:

<h1> Create Coupon </h1>
<form:form action="${pageContext.request.contextPath}/company/coupon" method="POST" modelAttribute="coupon">
title<input type="text" name="title"><br>
startDate<input type="date" name="startDate"><br>
endDate<input type="date" name="endDate"><br>
amount<input type="number" name="amount"><br>

message<input type="text" name="message"><br>
price<input type="number" name="price"><br>
image<input type="text" name="image"><br>
<input type="submit" value="add">
</form:form>

Вот CompanyController, который создает купон:

@PostMapping("/coupon")
public String createNewCoupon(@ModelAttribute Coupon coupon,Model theModel) {
    System.out.println
    ("inside createCoupon company method");
    System.out.println(coupon);
    coupon.setId(0);
    couponService.save(coupon);
    theModel.addAttribute("coupon",coupon);
    System.out.println(coupon);

    return "savedCoupon";
}

Вот класс купона:

@Entity
@Table(name="coupon")
public class Coupon {

@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
@Column(name="id")
private long id;
@Column(name="name")
private String title;
@Column(name="startDate")
private String startDate;
@Column(name="endDate")
private String endDate;
@Column(name="amount")
private int amount; //decrease ammount on ever customer purchase
@Column(name="couponType")
private CouponType type;
@Column(name="message")
private String message;
@Column(name="price")
private double price;
@Column(name="image")
private String image;

@ManyToOne
@JoinColumn(name="company_id")
private Company company;

@ManyToMany
private List<Customer> customer;



public Coupon() {

}



public Coupon(long id, String title, String startDate, String endDate, int amount, String message,
        double price, String image) {

    this.id = id;
    this.title = title;
    this.startDate = startDate;
    this.endDate = endDate;
    this.amount = amount;

    this.message = message;
    this.price = price;
    this.image = image;
}


public long getId() {
    return id;
}


public void setId(long id) {
    this.id = id;
}


public String getTitle() {
    return title;
}


public void setTitle(String title) {
    this.title = title;
}


public String getStartDate() {
    return startDate;
}


public void setStartDate(String startDate) {
    this.startDate = startDate;
}


public String getEndDate() {
    return endDate;
}


public void setEndDate(String endDate) {
    this.endDate = endDate;
}


public int getAmount() {
    return amount;
}


public void setAmount(int amount) {
    this.amount = amount;
}


public CouponType getType() {
    return type;
}


public void setType(CouponType type) {
    this.type = type;
}


public String getMessage() {
    return message;
}


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


public double getPrice() {
    return price;
}


public void setPrice(double price) {
    this.price = price;
}


public String getImage() {
    return image;
}


public void setImage(String image) {
    this.image = image;
}


@Override
public String toString() {
    return "Coupon [id=" + id + ", title=" + title + ", startDate=" + startDate + ", endDate=" + endDate
            + ", amount=" + amount + ", type=" + ", message=" + message + ", price=" + price + ", image="
            + image + "]";
}

}

Ответы [ 2 ]

0 голосов
/ 10 июня 2019
<h1> Create Coupon </h1>
<form:form action="${pageContext.request.contextPath}/company/coupon" method="POST" modelAttribute="coupon">
title<input type="text" name="title"><br>
startDate<input type="date" name="startDate"><br>
endDate<input type="date" name="endDate"><br>
amount<input type="number" name="amount"><br>
message<input type="text" name="message"><br>
price<input type="number" name="price"><br>
<form:select path="com.example.CouponType">
   <form:options/>
</form:select>
image<input type="text" name="image"><br>
<input type="submit" value="add">
</form:form>

так выглядит после того, как я попытался добавить тег в существующий тег <form:form>

0 голосов
/ 10 июня 2019

Как насчет

<select name="coupon-type"> 
    <option value="">Please Choose</option> 
    <% for(int i = 0;i < CouponType.values().length; i++){ %> 
        <option value="<%= CouponType.values()[i] %>" > <%=CouponType.values()[i]%> </option>
    <%}%> 
</select>

или Spring MVC:

<form:select path="com.example.CouponType">
   <form:options/>
</form:select>

или с Thymeleaf:

<select>
    <option th:each="value : ${T(com.example.demo.ExampleEnum).values()}"
            th:value="${value}"
            th:text="${value}">
    </option>
</select>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...