spring-petclinic
spring-petclinic copied to clipboard
A sample Spring-based application
adding new message in Chinese
While digging around the Spring Petclinic I found this issue running [digma.ai](http://digma.ai/) on the project. The n+1 situation arises in two situations: 1) Making a parameterless GET request on /owners...
This uses the configuration I wrote at https://github.com/langchain4j/langchain4j/pull/337 It should also fix some of the issues posted at https://github.com/spring-projects/spring-petclinic/pull/1514
``` @PostMapping("/owners/{ownerId}/edit") public String processUpdateOwnerForm(@Valid Owner owner, BindingResult result, @PathVariable("ownerId") int ownerId, RedirectAttributes redirectAttributes) { if (result.hasErrors()) { redirectAttributes.addFlashAttribute("error", "There was an error in updating the owner."); return VIEWS_OWNER_CREATE_OR_UPDATE_FORM; }...
I found a typo in confirmation message on create new visit page. I think this would be better
Hi guys, I'm new to open-source contribution, so I made this PR as an ice breaker; so forgive if the change is so silly and irrelevant. Anyways, I'd appreciate your...
Hi guys, this is my first open-source contribution so forgive me if the issue I'm pushing is so silly and irrelevant. However, I'd appreciate any feedback or ideas; I'd like...