Kunchala Vikram
fc4c49d537
Update maven-build.yml
2024-01-04 23:14:33 +05:30
Kunchala Vikram
0778691e95
Update maven-build.yml
2023-12-31 08:23:58 +05:30
Kunchala Vikram
ff331d2271
Update maven-build.yml
2023-12-31 08:23:10 +05:30
Kunchala Vikram
7ffd88595b
Update maven-build.yml
2023-12-30 23:52:10 +05:30
Kunchala Vikram
a09031369e
Update maven-build.yml
2023-12-30 23:46:16 +05:30
Kunchala Vikram
2a1de9d321
Update maven-build.yml
2023-12-30 23:45:52 +05:30
Kunchala Vikram
a0a21cc913
Update maven-build.yml
2023-12-30 23:44:42 +05:30
Kunchala Vikram
3f80cdb0b2
Update maven-build.yml
2023-12-30 23:42:44 +05:30
Kunchala Vikram
1d1efb463c
Update maven-build.yml
2023-12-30 23:19:29 +05:30
Kunchala Vikram
9420335ecf
Update maven-build.yml
2023-12-30 23:06:02 +05:30
Kunchala Vikram
ea68ae3958
Update maven-build.yml
2023-12-30 22:25:36 +05:30
Kunchala Vikram
a384f28a81
Update maven-build.yml
2023-12-30 22:25:14 +05:30
Kunchala Vikram
70db3c7e32
Create Jenkinsfile-k8s
2022-10-11 22:20:57 +05:30
Kunchala Vikram
3763df23af
Merge pull request #9 from kunchalavikram1427/feature
...
Update readme.md
2022-09-02 14:17:33 -07:00
Kunchala Vikram
de1eb73890
Update readme.md
2022-09-03 02:45:52 +05:30
Kunchala Vikram
16987461bd
Merge pull request #8 from kunchalavikram1427/feature
...
Update readme.md
2022-09-02 14:07:57 -07:00
Kunchala Vikram
8b6cad95a0
Update readme.md
2022-09-03 02:36:36 +05:30
vikram
3ad1639993
Added deployment file
2022-09-03 02:08:55 +05:30
vikram
0aa2ed52ae
Added deployment file
2022-09-03 01:54:45 +05:30
Kunchala Vikram
ce203b1e04
Update pom.xml
2022-09-03 01:16:33 +05:30
Kunchala Vikram
4673ea8bb1
Merge pull request #2 from kunchalavikram1427/dev
...
Update readme.md
2022-09-02 09:53:26 +05:30
Kunchala Vikram
4f5b1125c0
Update readme.md
2022-09-02 09:51:04 +05:30
Kunchala Vikram
d5f52b45ac
Merge pull request #1 from kunchalavikram1427/dev
...
Update readme.md
2022-09-02 09:43:28 +05:30
Kunchala Vikram
f72949036d
Update readme.md
2022-09-02 09:39:06 +05:30
Kunchala Vikram
5ae2531ef3
Update pom.xml
2022-08-31 17:35:29 +05:30
Kunchala Vikram
960d22c39f
Update pom.xml
2022-08-31 01:03:17 +05:30
vikram
4e01a63bb2
init
2022-08-31 00:56:58 +05:30
vikram
ce60e20ff8
init
2022-08-31 00:50:58 +05:30
Kunchala Vikram
55f405e9f8
Update pom.xml
2022-08-26 07:48:30 +05:30
Kunchala Vikram
4c7a14e1be
Update readme.md
2022-08-25 15:10:44 +05:30
Kunchala Vikram
e5f3eb4e94
Update pom.xml
2022-03-06 22:22:48 +05:30
Kunchala Vikram
ba553c923d
Update pom.xml
2022-03-03 22:29:26 +05:30
Kunchala Vikram
dfe12b57cb
Update pom.xml
2022-03-03 22:20:42 +05:30
Kunchala Vikram
13b1f11c30
Create Jenkinsfile
2022-02-13 00:45:29 +05:30
Kunchala Vikram
a3abfb567b
Update Dockerfile
2022-02-13 00:30:00 +05:30
Kunchala Vikram
0c76f5eb50
Update Dockerfile
2022-02-13 00:15:52 +05:30
Kunchala Vikram
3d23ac00cc
Create Dockerfile
2022-02-13 00:14:32 +05:30
Kunchala Vikram
d31bdfc705
Update pom.xml
2022-02-08 22:01:38 +05:30
Kunchala Vikram
0fc00fd56b
Update pom.xml
2022-02-08 21:22:08 +05:30
Dave Syer
9cb8dde9b8
Add section on building a container
2022-01-10 10:46:26 +00:00
Dave Syer
bdcaa85460
Alternative approach with eager fetch
2022-01-10 08:21:14 +00:00
Dave Syer
e765e3ffe1
Fix lazy loading issue in owner details
2022-01-10 08:08:43 +00:00
Dave Syer
8a28801d1a
Add actuators to Gradle build
2022-01-07 09:20:08 +00:00
Oliver Drotbohm
472575378c
Additional tweaks in aggregate model.
...
Introduced Owner.addVisit(…) to avoid that state transition to live in controller code.
Slightly polished some assertions in ClinicServiceTests.
2022-01-07 09:18:19 +00:00
Dave Syer
b559077f14
Remove manual id management in child entities
...
This is reverting a workaround for a Hibernate "feature". There's
no need for the child entities (Pet and Visit) to know about their
parent (foreign key). Hibernate can manage that just fine with a
@JoinColumn. But it needs a nullable foreign key column in the
DB schema. That's the downside. The upside is much less code in
Java.
2022-01-06 11:23:02 +00:00
Shaan Sapra
43beff91a3
Avoid dropping Postgres schema
...
The postgres user needs to be an owner of the public schema or a
superuser in order to execute the schema.sql for database
initialization.
To avoid that, two changes are required:
- use `CREATE TABLE IF NOT EXISTS` in order to idempotently create the
necessary tables
- handle conflicts when inserting duplicate data
This follows the pattern in use by the
src/main/resources/db/mysql/{data,schema.sql} files.
Authored-by: Shaan Sapra <shsapra@vmware.com>
2022-01-06 07:22:50 +00:00
Dave Syer
423a337543
Move Visit to owner package (it's aggregate root)
2022-01-05 09:39:26 +00:00
Dave Syer
58fe6298f8
Also remove VisitRepository
...
Rely on Hibernate to do lazy loading on visits.
2022-01-05 09:30:23 +00:00
Dave Syer
a5da14ae2f
No need for exclusion in recent versions
2022-01-05 08:25:30 +00:00
Dave Syer
c9534421c8
Remove PetRepository and use Owner as aggregate
...
Owner is really the aggregate root in DDD terms and there is no
need to directly access the Pet entity.
2022-01-05 08:24:58 +00:00