Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
2f22f4d
:tada:
pugeaale Oct 2, 2024
b1c3f8e
:sparkles: implement member entity
pugeaale Oct 3, 2024
43be0a5
:sparkles: implement chapter entity
pugeaale Oct 3, 2024
4bcedbe
:sparkles: implement one to one relationship between chapter and enti…
pugeaale Oct 3, 2024
fb51c8d
:sparkles: refactor save chapter as transactional
pugeaale Oct 3, 2024
c5300f6
:recycle: refactor chapter to have cascade on president when persisting
pugeaale Oct 3, 2024
62825a2
:sparkles: adding data faker to have fun datas
pugeaale Oct 3, 2024
066a8af
:sparkles: implementing create chapter and president with datas
pugeaale Oct 4, 2024
cf63634
:sparkles: implementing birectional ONE TO MANY relationship between …
pugeaale Oct 4, 2024
a88c3c0
:tada: task2 : event management application
pugeaale Oct 4, 2024
e200db8
:sparkles: implementing speaker entity
pugeaale Oct 4, 2024
1d93d8e
:sparkles: implementing speaker repository
pugeaale Oct 4, 2024
f013298
:sparkles: implementing speaker service with save implementation
pugeaale Oct 4, 2024
416ec59
:sparkles: implementing data loader with creating a speaker
pugeaale Oct 4, 2024
efaaf32
:sparkles: implementing guest entity and guest status
pugeaale Oct 4, 2024
b9ad806
:sparkles: implementing guest repository
pugeaale Oct 4, 2024
1c2431e
:sparkles: implementing guest service with save implementation
pugeaale Oct 4, 2024
0fb2341
:sparkles: loading new data with creating new guest
pugeaale Oct 4, 2024
fef4797
:sparkles: implementing event model
pugeaale Oct 4, 2024
3cab70e
:sparkles: implementing repository for event
pugeaale Oct 4, 2024
dd8c181
:sparkles: implementing service for event with save implementation
pugeaale Oct 4, 2024
ae40c1b
:sparkles: loading data with creating new event
pugeaale Oct 4, 2024
7643254
:sparkles: implementing exposition model extending event
pugeaale Oct 4, 2024
f9d7370
:sparkles: implementing exposition repository
pugeaale Oct 4, 2024
702ef7c
:sparkles: implementing exposition service
pugeaale Oct 4, 2024
7855169
:sparkles: implementing conference model
pugeaale Oct 4, 2024
a1e1e3e
:sparkles: implementing conference repository
pugeaale Oct 4, 2024
dc37142
:sparkles: implementing conference service
pugeaale Oct 4, 2024
55f33de
:sparkles: loading datas with creating conference and exposition
pugeaale Oct 4, 2024
622aebf
:sparkles: implementing one to many relationship between conference a…
pugeaale Oct 4, 2024
0d33e67
:sparkles: implementing one to many relationship between event and guest
pugeaale Oct 4, 2024
a26a1ed
:sparkles: loading datas to test one to many relationships with data …
pugeaale Oct 4, 2024
c736e2d
:sparkles: implementing findAll and deleteById for guest model
pugeaale Oct 4, 2024
f03e92b
:sparkles: implementing findAll and deleteById for speaker model
pugeaale Oct 4, 2024
038d5b2
:zap: implementing lazy fetching mode for event in guest
pugeaale Oct 4, 2024
3fd1556
:zap: implementing lazy fetching mode for conference in speaker
pugeaale Oct 4, 2024
9281249
:sparkles: implementing count feature to count all expositions, confe…
pugeaale Oct 4, 2024
5be613d
:sparkles: implementing find by id for conference
pugeaale Oct 5, 2024
e20ae8a
:sparkles: implementing find by id for exposition
pugeaale Oct 5, 2024
b0e8822
:sparkles: implementing find by id for guest
pugeaale Oct 5, 2024
ee2fdd7
:sparkles: implementing find by id for speaker
pugeaale Oct 5, 2024
a2f501e
:art:
pugeaale Oct 5, 2024
665901c
:sparkles: implementing find by id and delete by id for chapter
pugeaale Oct 5, 2024
8a37c17
:bug:
pugeaale Oct 5, 2024
628f9c5
:sparkles: implementing find by id and delete by id for member
pugeaale Oct 5, 2024
55bde75
:sparkles: implementing add member for chapter to set the chapter pro…
pugeaale Oct 5, 2024
63054ac
:art: implementing test for crud operations
pugeaale Oct 5, 2024
98b89c2
:sparkles: implementing joined Inheritance strategy
pugeaale Oct 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/.idea/
33 changes: 33 additions & 0 deletions task1/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
HELP.md
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/

### VS Code ###
.vscode/
19 changes: 19 additions & 0 deletions task1/.mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
wrapperVersion=3.3.2
distributionType=only-script
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
259 changes: 259 additions & 0 deletions task1/mvnw

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading