Getting 500 Exception response on my entity Booking due to @Future Annotation

I am building a web application based on hotel room booking and testing my REST API through postman and this @Future annotation from import jakarta.validation.constraints.Future; is giving me 500 response, while I tried to hit the link mentioned in the screenshot,I tried again by removing this @Future annotation and it is working perfectly, so please tell me if there is any alternative (for validating future checkOutDate should be greater than checkInDate) or solution for this issue.

I have used this @Future over one variable of entity, below is the code.

Booking.java

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>package com.Yash.Astoria.entities;
import jakarta.validation.constraints.Future;
import jakarta.persistence.*;
import jakarta.validation.constraints.Min;
import jakarta.validation.constraints.NotNull;
import lombok.Data;
import java.time.LocalDate;
@Data
@Entity
@Table(name = "bookings")
public class Booking {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@NotNull(message = "CheckIn Date is required")
private LocalDate checkInDate;
@Future(message = "check out date must be in the future")
private LocalDate checkOutDate;
@Min(value = 1, message = "Atleast 1 adult should be selected")
private int numOfAdults;
@Min(value = 0, message = "Number of Childrens should not be less then 0")
private int numOfChildren;
private int totalNumOfGuests;
private String bookingConfirmationCode;
@ManyToOne(fetch = FetchType.EAGER)
@JoinColumn(name = "user_id")
private User user;
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "room_id")
private Room room;
public void getTotalNumberOfGuests(){
this.totalNumOfGuests = this.numOfAdults + this.numOfChildren;
}
public void setNumOfAdults(int numOfAdults) {
this.numOfAdults = numOfAdults;
getTotalNumberOfGuests();
}
public void setNumOfChildren(int numOfChildren) {
this.numOfChildren = numOfChildren;
getTotalNumberOfGuests();
}
@Override
public String toString() {
return "Booking{" +
"id=" + id +
", checkInDate=" + checkInDate +
", checkOutDate=" + checkOutDate +
", numOfAdults=" + numOfAdults +
", numOfChildren=" + numOfChildren +
", totalNumOfGuests=" + totalNumOfGuests +
", bookingConfirmationCode='" + bookingConfirmationCode + ''' +
'}';
}
}
</code>
<code>package com.Yash.Astoria.entities; import jakarta.validation.constraints.Future; import jakarta.persistence.*; import jakarta.validation.constraints.Min; import jakarta.validation.constraints.NotNull; import lombok.Data; import java.time.LocalDate; @Data @Entity @Table(name = "bookings") public class Booking { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @NotNull(message = "CheckIn Date is required") private LocalDate checkInDate; @Future(message = "check out date must be in the future") private LocalDate checkOutDate; @Min(value = 1, message = "Atleast 1 adult should be selected") private int numOfAdults; @Min(value = 0, message = "Number of Childrens should not be less then 0") private int numOfChildren; private int totalNumOfGuests; private String bookingConfirmationCode; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "user_id") private User user; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "room_id") private Room room; public void getTotalNumberOfGuests(){ this.totalNumOfGuests = this.numOfAdults + this.numOfChildren; } public void setNumOfAdults(int numOfAdults) { this.numOfAdults = numOfAdults; getTotalNumberOfGuests(); } public void setNumOfChildren(int numOfChildren) { this.numOfChildren = numOfChildren; getTotalNumberOfGuests(); } @Override public String toString() { return "Booking{" + "id=" + id + ", checkInDate=" + checkInDate + ", checkOutDate=" + checkOutDate + ", numOfAdults=" + numOfAdults + ", numOfChildren=" + numOfChildren + ", totalNumOfGuests=" + totalNumOfGuests + ", bookingConfirmationCode='" + bookingConfirmationCode + ''' + '}'; } } </code>
package com.Yash.Astoria.entities;

import jakarta.validation.constraints.Future;
import jakarta.persistence.*;
import jakarta.validation.constraints.Min;
import jakarta.validation.constraints.NotNull;
import lombok.Data;

import java.time.LocalDate;

@Data
@Entity
@Table(name = "bookings")
public class Booking {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;

    @NotNull(message = "CheckIn Date is required")
    private LocalDate checkInDate;

    @Future(message = "check out date must be in the future")
    private LocalDate checkOutDate;

    @Min(value = 1, message = "Atleast 1 adult should be selected")
    private int numOfAdults;

    @Min(value = 0, message = "Number of Childrens should not be less then 0")
    private int numOfChildren;

    private int totalNumOfGuests;

    private String bookingConfirmationCode;

    @ManyToOne(fetch = FetchType.EAGER)
    @JoinColumn(name = "user_id")
    private User user;

    @ManyToOne(fetch = FetchType.LAZY)
    @JoinColumn(name = "room_id")
    private Room room;

    public void getTotalNumberOfGuests(){
        this.totalNumOfGuests = this.numOfAdults + this.numOfChildren;
    }

    public void setNumOfAdults(int numOfAdults) {
        this.numOfAdults = numOfAdults;
        getTotalNumberOfGuests();
    }

    public void setNumOfChildren(int numOfChildren) {
        this.numOfChildren = numOfChildren;
        getTotalNumberOfGuests();
    }

    @Override
    public String toString() {
        return "Booking{" +
                "id=" + id +
                ", checkInDate=" + checkInDate +
                ", checkOutDate=" + checkOutDate +
                ", numOfAdults=" + numOfAdults +
                ", numOfChildren=" + numOfChildren +
                ", totalNumOfGuests=" + totalNumOfGuests +
                ", bookingConfirmationCode='" + bookingConfirmationCode + ''' +
                '}';
    }
}

BookingController.java

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>package com.Yash.Astoria.controllers;
import com.Yash.Astoria.dto.Response;
import com.Yash.Astoria.entities.Booking;
import com.Yash.Astoria.services.Interface.IBookingService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;
@RestController
@RequestMapping("/bookings")
public class BookingController {
@Autowired
private IBookingService bookingService;
@PostMapping("/book-room/{roomId}/{userId}")
@PreAuthorize("hasAuthority('ADMIN') or hasAuthority('USER')")
public ResponseEntity<Response> saveBookings(@PathVariable Long roomId,
@PathVariable Long userId,
@RequestBody Booking bookingRequest){
Response response = bookingService.saveBooking(roomId, userId, bookingRequest);
return ResponseEntity.status(response.getStatusCode()).body(response);
}
@GetMapping("/all")
@PreAuthorize("hasAuthority('ADMIN')")
public ResponseEntity<Response> getAllBookings(){
Response response = bookingService.getAllBookings();
return ResponseEntity.status(response.getStatusCode()).body(response);
}
@GetMapping("/get-by-confirmation-code/{confirmationCode}")
public ResponseEntity<Response> getBookingByConfirmationCode(@PathVariable String confirmationCode){
Response response = bookingService.findBookingByConfirmationCode(confirmationCode);
return ResponseEntity.status(response.getStatusCode()).body(response);
}
@DeleteMapping
@PreAuthorize("hasAuthority('ADMIN') or hasAuthority('USER')")
public ResponseEntity<Response> cancelBooking(@PathVariable Long bookingId){
Response response = bookingService.cancelBooking(bookingId);
return ResponseEntity.status(response.getStatusCode()).body(response);
}
}
</code>
<code>package com.Yash.Astoria.controllers; import com.Yash.Astoria.dto.Response; import com.Yash.Astoria.entities.Booking; import com.Yash.Astoria.services.Interface.IBookingService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.ResponseEntity; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.web.bind.annotation.*; @RestController @RequestMapping("/bookings") public class BookingController { @Autowired private IBookingService bookingService; @PostMapping("/book-room/{roomId}/{userId}") @PreAuthorize("hasAuthority('ADMIN') or hasAuthority('USER')") public ResponseEntity<Response> saveBookings(@PathVariable Long roomId, @PathVariable Long userId, @RequestBody Booking bookingRequest){ Response response = bookingService.saveBooking(roomId, userId, bookingRequest); return ResponseEntity.status(response.getStatusCode()).body(response); } @GetMapping("/all") @PreAuthorize("hasAuthority('ADMIN')") public ResponseEntity<Response> getAllBookings(){ Response response = bookingService.getAllBookings(); return ResponseEntity.status(response.getStatusCode()).body(response); } @GetMapping("/get-by-confirmation-code/{confirmationCode}") public ResponseEntity<Response> getBookingByConfirmationCode(@PathVariable String confirmationCode){ Response response = bookingService.findBookingByConfirmationCode(confirmationCode); return ResponseEntity.status(response.getStatusCode()).body(response); } @DeleteMapping @PreAuthorize("hasAuthority('ADMIN') or hasAuthority('USER')") public ResponseEntity<Response> cancelBooking(@PathVariable Long bookingId){ Response response = bookingService.cancelBooking(bookingId); return ResponseEntity.status(response.getStatusCode()).body(response); } } </code>
package com.Yash.Astoria.controllers;

import com.Yash.Astoria.dto.Response;
import com.Yash.Astoria.entities.Booking;
import com.Yash.Astoria.services.Interface.IBookingService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;

@RestController
@RequestMapping("/bookings")
public class BookingController {

    @Autowired
    private IBookingService bookingService;

    @PostMapping("/book-room/{roomId}/{userId}")
    @PreAuthorize("hasAuthority('ADMIN') or hasAuthority('USER')")
    public ResponseEntity<Response> saveBookings(@PathVariable Long roomId,
                                                 @PathVariable Long userId,
                                                 @RequestBody Booking bookingRequest){
        Response response = bookingService.saveBooking(roomId, userId, bookingRequest);
        return  ResponseEntity.status(response.getStatusCode()).body(response);
    }

    @GetMapping("/all")
    @PreAuthorize("hasAuthority('ADMIN')")
    public ResponseEntity<Response> getAllBookings(){
        Response response = bookingService.getAllBookings();
        return ResponseEntity.status(response.getStatusCode()).body(response);
    }

    @GetMapping("/get-by-confirmation-code/{confirmationCode}")
    public ResponseEntity<Response> getBookingByConfirmationCode(@PathVariable String confirmationCode){
        Response response = bookingService.findBookingByConfirmationCode(confirmationCode);
        return  ResponseEntity.status(response.getStatusCode()).body(response);
    }

    @DeleteMapping
    @PreAuthorize("hasAuthority('ADMIN') or hasAuthority('USER')")
    public ResponseEntity<Response> cancelBooking(@PathVariable Long bookingId){
        Response response = bookingService.cancelBooking(bookingId);
        return ResponseEntity.status(response.getStatusCode()).body(response);
    }

}

postman screenshot 500 internal server error

Expectation: validating future checkOutDate should be greater than
checkInDate

Also, I have tried @FutureOrPresent annotation, and it give the same error

New contributor

Yash Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật