Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
ff90aea
First Commit
ilkinismayilov-905 Mar 6, 2026
de9e0d8
featre: Student class added.
XankisiyevYusif Mar 6, 2026
bffc99c
alo
umutcff Mar 6, 2026
ff1b41b
remove .idea folder
XankisiyevYusif Mar 6, 2026
053ab58
Salaaaam
XankisiyevYusif Mar 6, 2026
3b283b0
alo2
umutcff Mar 6, 2026
0feb5f7
Merge branch 'TaskMain' of https://github.com/ilkinismayilov-905/home…
XankisiyevYusif Mar 6, 2026
9996ea2
feature: Course class addeed id increment.
XankisiyevYusif Mar 6, 2026
94ec56c
feature: add validation student class.
XankisiyevYusif Mar 6, 2026
170d44c
alo3
umutcff Mar 6, 2026
15ae37f
alo4
umutcff Mar 6, 2026
b61ace3
feature: Teacher class added
ilkinismayilov-905 Mar 6, 2026
f45685d
feature: packages added
ilkinismayilov-905 Mar 6, 2026
16c7b8c
done
ilkinismayilov-905 Mar 6, 2026
9a87bb1
feature: Exception added,TeacherService added
ilkinismayilov-905 Mar 6, 2026
b6595c3
feature: added StudentService.
XankisiyevYusif Mar 6, 2026
59f7a0d
alo5
umutcff Mar 6, 2026
c888eae
courseController ready
umutcff Mar 9, 2026
1aa481c
feature: Teacher Controller added
ilkinismayilov-905 Mar 6, 2026
693b094
commit
ilkinismayilov-905 Mar 9, 2026
11d35eb
ignore idea folder
ilkinismayilov-905 Mar 9, 2026
3adc892
School service/controller added,services updated,unit tests added
ilkinismayilov-905 Mar 9, 2026
1c5bba5
feature: student controller and test added.
XankisiyevYusif Mar 9, 2026
12faa91
feature: School controller-service and tests updated
ilkinismayilov-905 Mar 10, 2026
b62ee01
feature: Fixed StudentController,CourseController and GlobalHandlerEx…
ilkinismayilov-905 Mar 11, 2026
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
Empty file added .ai/mcp/mcp.json
Empty file.
32 changes: 32 additions & 0 deletions .idea/compiler.xml

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

20 changes: 20 additions & 0 deletions .idea/jarRepositories.xml

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

20 changes: 20 additions & 0 deletions .idea/misc.xml

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

6 changes: 6 additions & 0 deletions .idea/vcs.xml

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

138 changes: 138 additions & 0 deletions .idea/workspace.xml

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

Binary file added SpringBootHomeWork/.DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions SpringBootHomeWork/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/mvnw text eol=lf
*.cmd text eol=crlf
33 changes: 33 additions & 0 deletions SpringBootHomeWork/.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/
3 changes: 3 additions & 0 deletions SpringBootHomeWork/.mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
wrapperVersion=3.3.4
distributionType=only-script
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.12/apache-maven-3.9.12-bin.zip
Loading