thymeleaf/thymeleaf-spring

Date returning null in controller

devesh1974 opened this issue · 0 comments

Hi,

  I am using this dependency for spring boot 3 and date is returning null in controller with request.getAttribute or getter methods
org.springframework.boot spring-boot-starter-thymeleaf

My html is

Application Date
				<tr>
				<td><label for="expirydate">Expiry Date</label></td>
				<td><input type="date" th:field="*{expirydate}" required="required" placeholder="Expiry Date" class="form-control mb-4 col-4"></td>
				<td></td>
				</tr>

My pojo is this

@NotNull
@DateTimeFormat(pattern="MM/dd/yyyy")
@column(name="applicationdate")
private Date applicationdate ;

I am using Java 17

Please help.

Thanks in advance

Devesh