Commit Graph

  • f9399b7a9f Fix typo in visits form which caused button to miss its text main Denis Fuenzalida 2025-06-07 23:30:06 -07:00
  • 67643c4137 Remove Reactor workaround for AOT Patrick Baumgartner 2025-06-07 17:38:47 +02:00
  • cefaf55dd1 Downgrading to mysql 9.2 Patrick Baumgartner 2025-06-04 22:21:33 +02:00
  • 2e61f19c66 Updated Copyright to year 2025 Patrick Baumgartner 2025-06-04 22:00:56 +02:00
  • 9faad25ec3 Cleanup maven-enforcer-plugin message Patrick Baumgartner 2025-06-04 22:00:21 +02:00
  • 47dfd4f388 Cleanup Java Classes Patrick Baumgartner 2025-06-04 21:59:34 +02:00
  • 142321aa3e Extracted findPetTypes Patrick Baumgartner 2025-06-04 21:51:16 +02:00
  • b21890c126 Aligned postgres properties with mysql properties Patrick Baumgartner 2025-06-04 21:48:38 +02:00
  • d44ad42886 Upgrading to Spring Boot 3.5 Patrick Baumgartner 2025-06-04 21:48:12 +02:00
  • 4a021e4ccf Upgraded databases Patrick Baumgartner 2025-06-04 21:47:34 +02:00
  • 9264c4813f Upgrading gradle wrapper to current version Patrick Baumgartner 2025-06-04 21:46:29 +02:00
  • af8645561b Cleanup HTML files Patrick Baumgartner 2025-06-04 21:46:07 +02:00
  • 3a931080d4 Remove unused findAll method from OwnerRepository and related test setup Antoine Rey 2025-05-08 16:52:06 +02:00
  • c5af32d5a1 Internationalization Enhancement anizmo 2025-04-30 21:57:06 -04:00
  • 0c88f916db Adding strings for all other languages anizmo 2025-04-15 22:51:56 -04:00
  • 332abbcb8a Note about windows shell Dave Syer 2025-03-27 16:10:43 +00:00
  • d7cc02f3d7 Use the java.util List.of() instead of the AssetJ Lists class Antoine Rey 2025-03-07 08:26:12 +01:00
  • fceca7754a Associating a <label> with a form control Antoine Rey 2025-02-26 22:38:26 +01:00
  • 7f1af268ec Remove unnecessary @Autowired annotation from the PetTypeFormatter Antoine Rey 2025-02-26 22:35:03 +01:00
  • 2aa53f929d Fix pet update functionality - Fixed issue where editing a pet's type or name wasn't persisting - Updated processUpdateForm to modify existing pet instead of adding new one - Added proper handling of existing pet update VishantOwO 2025-01-01 03:52:27 +05:30
  • 6328d2c9dc Add DCO to README Dave Syer 2025-02-12 14:58:27 +00:00
  • 7bce202762 Add dco config Dave Syer 2025-02-12 14:56:15 +00:00
  • aa2273e955 Make sure MySQL test app works Dave Syer 2025-02-04 09:08:45 +00:00
  • 1f89996e1f Update Spring Boot to 3.4.2 Dave Syer 2025-02-04 08:47:30 +00:00
  • 73d73609b5 Use Java Streams to sort the Specialty objects by their name Antoine Rey 2025-01-19 19:13:56 +01:00
  • b46b97a3e7 Remove unused Transactional import Antoine Rey 2025-01-19 19:43:29 +01:00
  • 6148ddd967 Uses the date property of the Visit entity Antoine Rey 2024-12-15 18:36:30 +01:00
  • ee8f8dcdad Migrate Spring links for issues from Jira to GitHub Antoine Rey 2024-12-12 08:16:17 +01:00
  • 22caee3d03 feat: add Persian and Turkish localization files for application messages feelgood1987 2024-11-30 17:03:09 +03:00
  • 42e2c74b0b Add a Dockerfile for dev environments other than codespaces Dave Syer 2024-11-28 14:45:59 +00:00
  • 3b90fac983 Fix occasional stale volume in postgres tests Dave Syer 2024-10-14 15:29:49 +01:00
  • 300597fc6c Update tomestamp for reproducible builds Dave Syer 2024-10-14 15:29:20 +01:00
  • 40a41375e6 Add new test file -<modify>: remove @Transactional. -<add>: create unit-test file related to PetValidator. -<refactor>: move pet objects initialization to @BeforeEach setup. YiXuan Ding 2024-11-12 17:33:46 +08:00
  • 214a8fb87f <fix>: rename the DI variable name in constructor. YiXuan Ding 2024-11-12 18:57:52 +08:00
  • a0ba075bd8 Futher updates for Spring Boot 3.4 Patrick Baumgartner 2024-11-27 10:47:52 +01:00
  • 91f55a4f71 Versionless webjars (again) Dave Syer 2024-11-27 08:32:30 +00:00
  • 9f1cda1c08 Update to Boot 3.4 Dave Syer 2024-11-25 11:04:49 +00:00
  • 317562a170 Implement K8S deployment testing using Kind in GitHub Actions Andrey Litvitski 2024-11-11 23:30:06 +03:00
  • 1cad4124b7 Refactor code logic <refactor>: remove useless logic cod. <refactor>: detele useless annotation which is provided by Jpa. <refactor>: refactor implement of findByLastName, use Jpa to simplify query. YiXuan Ding 2024-11-10 20:51:23 +08:00
  • 668629d5bd refactor OwnerRepository: -<replace>: use JpaRepository to replace Repository in OwnerRepository class. -<remove1>: remove save() method. JpaRepository provides it by default. -<remove2>: remove @Query because in Owner class, the @OneToMany annotiation achieved fetch in query. -<refactor1>: use Optional<Owner> to recieve the result from findById(), and if is null, throw IllegalArugmentExpection. -<refactor2>: achieve the assert to judge return value in tests. -<add>: add name to @author tag. YiXuan Ding 2024-11-08 22:05:22 +08:00
  • a3026bddbb Add Kubernetes support Andrey Litvitski 2024-11-07 17:33:58 +03:00
  • 50866def72 Refactor the logic and add unit test -<add>: add @NotBlank validation to pet's name. -<refactor>: delete useless code and add unit test to check duplicate Pet name validation logic. -<modify>: add Id to pet in unit test. -<refactor>: classify unit test. YiXuan Ding 2024-11-07 17:37:12 +08:00
  • 14af47d4e5 Refactor: - <optimize>: delete logic add owner to model because of the comment @ModelAttribute("owner"). - <fix>: add logical judgment in ordet to avoid owner from form and ownerId from url mismatch. YiXuan Ding 2024-11-06 20:09:08 +08:00
  • fdc40a7048 Fix harmless bugs. - <fix>: use equals to replace == to compare Integer variable. - <delete>: remove redundant 'toLowerCase()' method and simplify pet lookup logic. - <update>: rewrite method getName() comments. YiXuan Ding 2024-11-05 15:27:56 +08:00
  • a50bfb65bb Update Spring Boot release, adding Gradle build and cleanup Patrick Baumgartner 2024-11-05 09:45:11 +01:00
  • dff45cf70c fix: Temporarily removing accentuation from messages. João Bertholino 2024-10-20 15:20:52 -03:00
  • 90bbb98ea6 Update readme to refer to test main classes Dave Syer 2024-11-05 08:24:50 +00:00
  • bbb237928f feat: Adds support for the Portuguese language. João Bertholino 2024-10-19 16:18:34 -03:00
  • 912de1648e feat: add russian ruabooe 2024-10-20 13:14:47 +03:00
  • 62dbfa8e9a Remove the unnecessary includeFilters Antoine Rey 2024-10-09 22:41:48 +02:00
  • ae1bb8228c Minor code changes are the following: -Removed unused variables from few files. -Added null assertions in some tests. -Removed unnecessary throw exceptions. Mousa Al Bateh 2024-10-03 20:06:42 +02:00
  • fc442120ce fix(jmx): strip spaces before path Guilherme Soares 2024-09-30 20:14:33 +01:00
  • f8001e0add Change chmod like other files Patrick Baumgartner 2024-09-28 10:04:43 +02:00
  • 608e2b6142 Update maven and gradle wrapper Patrick Baumgartner 2024-09-28 09:38:06 +02:00
  • 6fffe61b93 Updated db containers, and dependencies Patrick Baumgartner 2024-09-28 08:58:17 +02:00
  • 2daa3993ee Removed unused imports Made some variables as final ghost 2024-09-24 04:44:04 +02:00
  • d90e284621 Disable JPA Open Session In View Sébastien Deleuze 2024-09-24 16:21:15 +02:00
  • f6f923bd39 Upgrade to Spring Boot 3.3.4 Sébastien Deleuze 2024-09-24 16:15:42 +02:00
  • 809e6f1c1c Example of using RAG in Vets retreival, as well as refactoring, bug fixes and enhancements spring-ai Oded Shopen 2024-09-22 12:00:29 +03:00
  • cabb74ed53 Update to Boot 3.3.3 Dave Syer 2024-09-13 10:03:26 +01:00
  • 290bb439d1 Chatbot for Spring Petclinic. Oded Shopen 2024-09-10 19:43:06 +03:00
  • 91328af12d Upgrade to Spring Boot 3.3.2 Moritz Halbritter 2024-08-19 13:59:58 +02:00
  • 12eb8b1ff3 Update the DevContainer configuration Julien Dubois 2024-07-30 11:18:32 +02:00
  • 383edc1656 Update readme.md to link to Spring Boot docs Dave Syer 2024-07-29 08:15:51 +01:00
  • d8fcd11e67 Upgrade to Maven 3.9.7 Stéphane Nicoll 2024-05-26 20:16:44 +02:00
  • 308f7ec783 Including CycloneDX for SBOM generation Patrick Baumgartner 2024-05-26 12:46:57 +02:00
  • fa8f6836bd Upgrade Gradle build to Spring Boot 3.3.0 Stéphane Nicoll 2024-05-26 10:24:53 +02:00
  • 39cc7e160e Upgrade Dependencies Patrick Baumgartner 2024-05-25 17:36:13 +02:00
  • 7034d1746a Upgrade to Spring Boot 3.3.0 Patrick Baumgartner 2024-05-25 17:24:17 +02:00
  • 52e528b2ad Upgrade to Maven Wrapper 3.3.1 Patrick Baumgartner 2024-05-25 17:22:43 +02:00
  • aa9b9e7f43 Upgrade to Spring Boot 3.2.5 Stéphane Nicoll 2024-05-21 09:01:29 +02:00
  • 055ef65dfb Upgrade to Maven 3.9.6 Stéphane Nicoll 2024-05-21 09:02:02 +02:00
  • 85ae6fbc80 Upgrade to Gradle 8.7 Stéphane Nicoll 2024-05-21 09:00:32 +02:00
  • 6fa3fa8196 Update docker-compose.yml portfoliodeekshith 2024-03-30 13:59:30 +05:30
  • 527dad0c17 Update docker-compose.yml to bump postgresql to 16.3 andrzejsydor 2024-05-16 16:00:02 +00:00
  • 284d07942e fix: docker-compose.yml: version is obsolete andrzejsydor 2024-05-16 16:14:51 +00:00
  • 405cdc635b Add user friendly error message Pedro Chevallier 2024-03-20 18:54:40 -03:00
  • c7bc8b1ae6 fix typo in confirmation message minsungoh 2024-05-10 00:17:41 +09:00
  • c0bc917426 Formatting Dave Syer 2024-05-16 15:23:56 +01:00
  • bf3bc29e56 Fix postgres data akan.tileubergenov 2024-03-07 12:51:52 +05:00
  • 395356afc6 remove leading spaces in /owners//pets//visits/new, /owners//pets//visits/new and /webjars/bootstrap/5.3.2/dist/js/bootstrap.bundle.min.js resulting in 404s Alex 2024-05-06 13:12:20 +02:00
  • 8f799263e0 test: remove duplicate assertion Anyul Rivas 2024-03-19 09:32:15 +01:00
  • 19f5268ac1 test: improve test readability Anyul Rivas 2024-03-17 16:00:58 +01:00
  • f3a67551c2 chore: optimize imports Anyul Rivas 2024-03-17 15:50:14 +01:00
  • 7055f0c6a6 test: refactor using AssertJ assertions Anyul Rivas 2024-03-17 15:49:06 +01:00
  • c5b3b3597e test: modify assertion for increasing readability. Anyul Rivas 2024-03-17 15:44:04 +01:00
  • ca5785465f Update src/test/java/org/springframework/samples/petclinic/service/ClinicServiceTests.java Anyul Rivas 2024-03-17 15:41:14 +01:00
  • d604a01984 Update src/test/java/org/springframework/samples/petclinic/model/ValidatorTests.java Anyul Rivas 2024-03-17 15:41:00 +01:00
  • 57eb7443a6 test: modify assertion for increasing readability. Anyul Rivas 2024-03-14 09:23:01 +01:00
  • dea3432a6d test: simplify code Anyul Rivas 2024-03-14 09:21:59 +01:00
  • 9ed20bf999 test: rewrite assertions using AssertJ better readability Anyul Rivas 2024-03-14 09:20:45 +01:00
  • 4f78b07490 test: rewrite assertion using AssertJ for consistency Anyul Rivas 2024-03-14 09:18:19 +01:00
  • 5941227ab3 test: complete assertions Anyul Rivas 2024-03-14 09:05:28 +01:00
  • 516722647a Gradle wrapper files should have correct line endings Maksim Sasnouski 2024-02-29 13:15:20 +03:00
  • 3efd6e0f03 Use gradle Java plugin configuration block Maksim Sasnouski 2024-02-29 13:09:17 +03:00
  • 6508cfb05f Bump gradle from 8.4 to 8.6 Maksim Sasnouski 2024-02-29 13:03:05 +03:00
  • 4148fc9eb3 Add Gradle files indentation to .editorconfig Abel Salgado Romero 2024-02-01 10:09:49 +01:00
  • a2f1ad5503 Make maven and gradle share checkstyle configuration thomasperkins1123 2024-02-14 01:56:03 +00:00
  • da1c93d367 Make suppresions work on windows paths thomasperkins1123 2024-02-08 15:55:56 +00:00
  • ee6573cee0 Add checkstyle for gradle thomasperkins1123 2024-01-31 12:45:31 +00:00