Server Application Programming Guide

Common Guideline

Naming Convention

Category Item Name Pattern Samples Remarks
Class Spring Controller Class SubejctController UserController, ActivityController, RewardController  
  Spring Service Class SubjectService    
  MyBatis Mapper Class SubjectMapper    
  MyBatis SQL Map SubjectMapper.xml    
Controller Method Finding/Listing Method findSubjectById findUserById  
    findSubjectsByCategory findRewardsByUser  
    findSubjectsWithInterval    
    findSubjectsWithCondition    
  Creation Method addSubject    
  Update Method updateSubject    
  Updating Single Proprety setPropertyOfSubject    
  Deletion Method removeSubject    

Logging Method

Controller Programming Guide

Class Level

Method Level

Find Method

TODO

Contents to add