Category Archives: Java
@Builder.Default 별로다
JAVA Stream
Authentication 과 Authorization 의 차이
Authentication 과 Authorization 의 차이
Authentication : 로그인체크
접속자의 아이디를 확인하는 단계이다.
Authorization : 권한체크
… 더보기Lombok Builder 와 상속
Swagger UI 2 설정하기
Swagger UI 2 설정하기
의존성 추가
dependencies {
implementation 'io.springfox:springfox-swagger-ui:2.9.2'
implementation 'io.springfox:springfox-swagger2:2.9.2'
}
Swagger 활성화
… 더보기객체지향 설계의 5원칙 S.O.L.I.D
Java BigDecimal 사칙연산
Java BigDecimal 사칙연산
BigDecimal n1 = new BigDecimal("4.3456");
BigDecimal n2 = new BigDecimal("2.1859");
System.out.println("n1 :
… 더보기 객체지향 프로그래밍(Object-Oriented Programming, OOP)
객체지향 프로그래밍(Object-Oriented Programming, OOP)
– 객체지향 프로그래밍이란 무엇인가?
… 더보기객체 지향 프로그래밍은 컴퓨터 프로그래밍 패러다임중 하나로,