mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-20 06:45:50 +00:00
Merge branch 'spring-projects:main' into main
This commit is contained in:
commit
d11fda938b
4 changed files with 21 additions and 3 deletions
|
@ -147,9 +147,9 @@ Here is a list of them:
|
||||||
|
|
||||||
| Name | Issue |
|
| Name | Issue |
|
||||||
|------|-------|
|
|------|-------|
|
||||||
| Spring JDBC: simplify usage of NamedParameterJdbcTemplate | [SPR-10256](https://jira.springsource.org/browse/SPR-10256) and [SPR-10257](https://jira.springsource.org/browse/SPR-10257) |
|
| Spring JDBC: simplify usage of NamedParameterJdbcTemplate | [SPR-10256](https://github.com/spring-projects/spring-framework/issues/14889) and [SPR-10257](https://github.com/spring-projects/spring-framework/issues/14890) |
|
||||||
| Bean Validation / Hibernate Validator: simplify Maven dependencies and backward compatibility |[HV-790](https://hibernate.atlassian.net/browse/HV-790) and [HV-792](https://hibernate.atlassian.net/browse/HV-792) |
|
| Bean Validation / Hibernate Validator: simplify Maven dependencies and backward compatibility |[HV-790](https://hibernate.atlassian.net/browse/HV-790) and [HV-792](https://hibernate.atlassian.net/browse/HV-792) |
|
||||||
| Spring Data: provide more flexibility when working with JPQL queries | [DATAJPA-292](https://jira.springsource.org/browse/DATAJPA-292) |
|
| Spring Data: provide more flexibility when working with JPQL queries | [DATAJPA-292](https://github.com/spring-projects/spring-data-jpa/issues/704) |
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
|
|
|
@ -55,7 +55,7 @@ public class Pet extends NamedEntity {
|
||||||
|
|
||||||
@OneToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER)
|
@OneToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER)
|
||||||
@JoinColumn(name = "pet_id")
|
@JoinColumn(name = "pet_id")
|
||||||
@OrderBy("visit_date ASC")
|
@OrderBy("date ASC")
|
||||||
private final Set<Visit> visits = new LinkedHashSet<>();
|
private final Set<Visit> visits = new LinkedHashSet<>();
|
||||||
|
|
||||||
public void setBirthDate(LocalDate birthDate) {
|
public void setBirthDate(LocalDate birthDate) {
|
||||||
|
|
9
src/main/resources/messages/messages_fa.properties
Normal file
9
src/main/resources/messages/messages_fa.properties
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
welcome=خوش آمدید
|
||||||
|
required=الزامی
|
||||||
|
notFound=یافت نشد
|
||||||
|
duplicate=قبلا استفاده شده
|
||||||
|
nonNumeric=باید عددی باشد
|
||||||
|
duplicateFormSubmission=ارسال تکراری فرم مجاز نیست
|
||||||
|
typeMismatch.date=تاریخ نامعتبر
|
||||||
|
typeMismatch.birthDate=تاریخ تولد نامعتبر
|
||||||
|
|
9
src/main/resources/messages/messages_tr.properties
Normal file
9
src/main/resources/messages/messages_tr.properties
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
welcome=hoş geldiniz
|
||||||
|
required=gerekli
|
||||||
|
notFound=bulunamadı
|
||||||
|
duplicate=zaten kullanılıyor
|
||||||
|
nonNumeric=sadece sayısal olmalıdır
|
||||||
|
duplicateFormSubmission=Formun tekrar gönderilmesine izin verilmez
|
||||||
|
typeMismatch.date=geçersiz tarih
|
||||||
|
typeMismatch.birthDate=geçersiz tarih
|
||||||
|
|
Loading…
Reference in a new issue