/guildsystem

A RPG Guild System

Primary LanguageJava

The Great Guild System!!!

A spring boot RESTful service project. Treated as a programming play ground where to try and find good coding principles of clean code.

Design Principles:

GoogleTechTalks: The Clean Code Talks

Field Dependency Injection Considered Harmful

Talks about Unit Testing by Roy Osherove

Current Progress:

1. Restful API for user model:

  • 1-1. Using HandlerMethodArgumentResolver for getting user data.
  • 1-2. Using Inheritance for role control. Comparing with AOP, it has better maintainability and testability.
  • 1-3. Strategy Pattern for different team creation controllers. Application works differently through wiring components differently.

2. Internationalized message handling, exception response handling.

3. Used/Will used design patterns:

  • 3-1. Factory Method Pattern
  • 3-2. Builder Pattern
  • 3-3. Composite Pattern
  • 3-4. Strategy Pattern (Using polymorphism and generics)

4. Unit testing