Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 779 Bytes

File metadata and controls

37 lines (27 loc) · 779 Bytes

java_01 — Java Junior Developer - занятие 1

Learning Objectives

This is educational material. Key goals:

  • Study the source code and understand the patterns used
  • Complete exercises and homework assignments
  • Experiment with modifications to deepen understanding

Prerequisites

  • JDK 8+
  • Maven 3.x

Build & Run

mvn clean install
mvn test

Development Guidelines

Code Style

  • Follow standard Java conventions
  • Keep code clean and well-organized
  • Use meaningful variable and method names

Git Workflow

  • Write clear, descriptive commit messages
  • One logical change per commit
  • Test before committing

Testing

  • Write tests for new functionality
  • Run the full test suite before pushing
  • Keep tests focused and independent