Here you can find the source of convertLocalDateToDatabaseDateString(LocalDate localDate)
public static String convertLocalDateToDatabaseDateString(LocalDate localDate)
//package com.java2s; //License from project: Open Source License import java.time.LocalDate; import java.time.format.DateTimeFormatter; public class Main { public static String convertLocalDateToDatabaseDateString(LocalDate localDate) { DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd"); return localDate.format(formatter); }/* w w w . j av a 2 s. com*/ }