This repository has been archived by the owner on Aug 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
home
Alex edited this page Sep 8, 2020
·
33 revisions
젠킨스 주소 (비로그인시 Read-only)
http://ec2-13-209-77-87.ap-northeast-2.compute.amazonaws.com:8080/jenkins/job/Used-Market-Server/
1. 다중 서버 환경에서 Session 공유 방법
https://junshock5.tistory.com/84?category=875035
2. REST API 정의와 중고거래 프로젝트에 적용하기
https://junshock5.tistory.com/107?category=875035
3. swagger 연동을 통한 자동 API 문서 생성하기
https://junshock5.tistory.com/132
4. i18n 설정과 Messagesource를 통한 다국어 처리
https://junshock5.tistory.com/131
5. 로그인 확인 코드 AOP 적용하기
https://junshock5.tistory.com/130
6. Log4j2 Log4j Logback 차이를 이해하고 적용하기
https://junshock5.tistory.com/124?category=875035
7. jenkins CI 적용하기
https://junshock5.tistory.com/129
8. 대용량 트래픽 환경에서 게시글 검색시 캐싱 적용하기
https://junshock5.tistory.com/105?category=875035
9. 웹소켓을 이용한 1:1 채팅 구현하기
https://junshock5.tistory.com/106?category=875035
10. junit을 이용한 테스트 코드 작성하기
https://junshock5.tistory.com/128
ID | 기본규칙 | 추가규칙 | 예시 |
---|---|---|---|
클래스 | PascalCase | public class ProductDTO {} | |
인터페이스 | PascalCase | (Prefix)I | public interface ProductService {} |
패키지명 | lowercase | package com.market.server.dto; | |
열거형 | PascalCase | public enum Status {} | |
메소드 | CamelCase | public void register() | |
프로퍼티 | CamelCase | private int accountId; | |
전역변수 | CamelCase | private String grade; | |
지역변수 | CamelCase | int idIndex; | |
파라메터 | CamelCase | public void login(String id) | |
상수 | UpperCase | SnakeCase | private static String LOGIN_ADMIN_ID; |