https://github.com/vrnsky/java-a-to-z
Java Study Project
https://github.com/vrnsky/java-a-to-z
java oop study-project
Last synced: 3 months ago
JSON representation
Java Study Project
- Host: GitHub
- URL: https://github.com/vrnsky/java-a-to-z
- Owner: vrnsky
- Created: 2016-05-22T15:58:19.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-11-25T06:18:00.000Z (over 1 year ago)
- Last Synced: 2024-11-25T07:23:19.515Z (over 1 year ago)
- Topics: java, oop, study-project
- Language: Java
- Homepage: https://job4j.ru
- Size: 1.45 MB
- Stars: 12
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://github.com/vrnsky/java-a-to-z/actions/workflows/build.yml)
[](https://codecov.io/gh/vrnsky/java-a-to-z)
[](#)
[](#)
[](https://sonarcloud.io/summary/new_code?id=vrnsky_java-a-to-z)
This repository contains solution of task from courses at the job4j.ru course.
In course use next technology :
1. [Maven](https://maven.apache.org/)
2. [JUnit](https://junit.org/junit5/)
3. [Mockito/PowerMock](https://site.mockito.org/)
4. [Hibernate](https://hibernate.org/)
5. [jQuery](https://jquery.com/)
6. [Bootstrap](https://getbootstrap.com/)
Chapters:
1. [Basic syntax](./chapter1)
2. [Object oriented programming](./chapter2)
3. [Input/Output](./chapter3)
4. [Object oriented design](./chapter4)
5. [Collections](./chapter5)
6. [Garbage Collector](./chapter6)
7. [Multithreading](./chapter7)
8. [JDBC](./chapter8)
9. [JSP and Servlet](./chapter9)
10. [Hibenate](./chapter10)
11. [Spring](./chapter11)
12. [Algorithms](./chapter12)
13. [Design Patterns](./chapter13)
14. [Integration](./chapter14)
In the project, we use Checkstyle Maven plugin to prevent malformed code and JaCoCo Maven plugin
for measuring coverage. For continuous integration using [GitHub Actions](https://github.com/features/actions),
we also use [CodeCov](https://codecov.io) for measuring coverage. In the recent updates, we have introduced mutation testing with the PIT Maven plugin.
The project has a module-based architecture.
One lesson - one module. We made this division for more comfortable work with internal dependencies.
At the second chapter, we built our first Java application. It is a simple console task tracker.
It has minimal functions: adding, editing, and removing or commenting on an item. It runs
by the following way
```
java -jar start-1.0.jar
```
In chapter 10, I created a similar app to the one I made in the second chapter of
this course. But now this app has a web interface based on Bootstrap. Instead
of using JDBC, I am using Hibernate ORM. In the app, I use Ajax to send requests
to the server without updating the page.
---
Contacts:
[](https://vrnsky.medium.com)
[](https://vrnsky.substack.com)
[](https://vrnsky.github.io)
[](https://me.dm/@vrnsky)