How to create a custom Id in spring boot and save into database?

The patient registration class has patient id which is unique. the id should be like – P2024070280001, P is prefix, 2024 is the current year, 07 means the current month, 028 means that specific day, 0001 means the serial, first patient of that day.

If 200 patients register today, it will be P2024070280200. The next day, if a new patient is registered at the beginning of the day, the serial would be P2024070290001. Every time a patient is registered, the serial will auto generate and increase. Is this logic sufficient for Unique Id generation? How to do it in a robust and efficient way?

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>import lombok.Data;
import java.time.LocalDate;
@Entity
@Data
public class Patient {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@Column(unique = true, nullable = false)
private String patientId;
private String name;
private Integer age;
private String address;
private String contact;
}
</code>
<code>import lombok.Data; import java.time.LocalDate; @Entity @Data public class Patient { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @Column(unique = true, nullable = false) private String patientId; private String name; private Integer age; private String address; private String contact; } </code>
import lombok.Data;

import java.time.LocalDate;

@Entity
@Data
public class Patient {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;

    @Column(unique = true, nullable = false)
    private String patientId;

    private String name;
    private Integer age;
    private String address;
    private String contact;
}

This is the service class

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.util.List;
import java.util.Optional;
@Service
public class PatientService {
private final PatientRepository patientRepository;
@Autowired
public PatientService(PatientRepository patientRepository) {
this.patientRepository = patientRepository;
}
public Patient savePatient(Patient patient) {
// Generate patient ID
String patientIdPrefix = "P";
LocalDate currentDate = LocalDate.now();
String formattedDate = currentDate.format(DateTimeFormatter.ofPattern("yyyyMMdd"));
String serialNumber = generateSerialNumber(currentDate);
patient.setPatientId(patientIdPrefix + formattedDate + serialNumber);
return patientRepository.save(patient);
}
public List<Patient> getAllPatients() {
return patientRepository.findAll();
}
public Optional<Patient> getPatientById(Long id) {
return patientRepository.findById(id);
}
public Patient updatePatient(Patient patient) {
return patientRepository.save(patient);
}
public void deletePatient(Long id) {
patientRepository.deleteById(id);
}
private String generateSerialNumber(LocalDate currentDate) {
static int serial = 1;
String formattedSerial = String.format("%04d", serial++);
return formattedSerial;
}
}
</code>
<code>import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.time.LocalDate; import java.time.format.DateTimeFormatter; import java.util.List; import java.util.Optional; @Service public class PatientService { private final PatientRepository patientRepository; @Autowired public PatientService(PatientRepository patientRepository) { this.patientRepository = patientRepository; } public Patient savePatient(Patient patient) { // Generate patient ID String patientIdPrefix = "P"; LocalDate currentDate = LocalDate.now(); String formattedDate = currentDate.format(DateTimeFormatter.ofPattern("yyyyMMdd")); String serialNumber = generateSerialNumber(currentDate); patient.setPatientId(patientIdPrefix + formattedDate + serialNumber); return patientRepository.save(patient); } public List<Patient> getAllPatients() { return patientRepository.findAll(); } public Optional<Patient> getPatientById(Long id) { return patientRepository.findById(id); } public Patient updatePatient(Patient patient) { return patientRepository.save(patient); } public void deletePatient(Long id) { patientRepository.deleteById(id); } private String generateSerialNumber(LocalDate currentDate) { static int serial = 1; String formattedSerial = String.format("%04d", serial++); return formattedSerial; } } </code>
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.util.List;
import java.util.Optional;

@Service
public class PatientService {

    private final PatientRepository patientRepository;

    @Autowired
    public PatientService(PatientRepository patientRepository) {
        this.patientRepository = patientRepository;
    }

    public Patient savePatient(Patient patient) {
        // Generate patient ID
        String patientIdPrefix = "P";
        LocalDate currentDate = LocalDate.now();
        String formattedDate = currentDate.format(DateTimeFormatter.ofPattern("yyyyMMdd"));
        String serialNumber = generateSerialNumber(currentDate);
        patient.setPatientId(patientIdPrefix + formattedDate + serialNumber);
        return patientRepository.save(patient);
    }

    public List<Patient> getAllPatients() {
        return patientRepository.findAll();
    }

    public Optional<Patient> getPatientById(Long id) {
        return patientRepository.findById(id);
    }

    public Patient updatePatient(Patient patient) {
        return patientRepository.save(patient);
    }

    public void deletePatient(Long id) {
        patientRepository.deleteById(id);
    }

    private String generateSerialNumber(LocalDate currentDate) {    
        static int serial = 1;
        String formattedSerial = String.format("%04d", serial++);
        return formattedSerial;
    }
}

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