現在の日付を自動入力するjavaはどこへ挿入できますか。
package com.example.billing.Request;
import java.time.LocalDate;
import org.springframework.format.annotation.DateTimeFormat;
import lombok.Data;
@Data
public class BillingNewRequest {
private Integer id;
@DateTimeFormat(pattern = "yyyy-MM-dd")
private LocalDate date;
private Integer billing;
private String application;
private String result;
private String remarks;
}
回答1件
あなたの回答
tips
プレビュー