spring-petclinic-rest
spring-petclinic-rest copied to clipboard
REST version of the Spring Petclinic sample application
There are some unmapped target properties: ``` [INFO] Compiling 112 source files with javac [debug parameters release 17] to target/classes [WARNING] /Users/arey/Dev/GitHub/spring-petclinic/spring-petclinic-rest/src/main/java/org/springframework/samples/petclinic/mapper/PetTypeMapper.java:[19,13] Unmapped target property: "id". [WARNING] /Users/arey/Dev/GitHub/spring-petclinic/spring-petclinic-rest/src/main/java/org/springframework/samples/petclinic/mapper/VetMapper.java:[17,9] Unmapped target...
To fix the issue https://github.com/spring-petclinic/spring-petclinic-rest/issues/165, we temporary declared a `NoOpPasswordEncoder`. A more secure approach is to use a `BCryptPasswordEncoder`.
See https://github.com/spring-projects/spring-petclinic/commit/7b1abb3ca9a0a47afbcf4299638fc09e37b2405a
Bumps [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) from 3.2.1 to 3.3.4. Release notes Sourced from org.springframework.boot:spring-boot-starter-parent's releases. v3.3.4 :lady_beetle: Bug Fixes management.health.db.ignore-routing-datasources=true has no effect when an AbstractRoutingDataSource has been wrapped #42322 Missing details in...
Following the feedback on [PR #146](https://github.com/spring-petclinic/spring-petclinic-rest/pull/146), there's an opportunity to enhance our API's error handling by adopting the RFC 9457 Problem Details for HTTP APIs specification. This update will ensure...