python 클래스! 작성일 2021-08-21 Edited on 2026-03-03 In python , serious python 클래스1234567891011121314151617181920212223242526272829303132class Car: brand = 'hyundai' # 클래스변수 def __init__(self, name): # 생성자 self.name = name def print_name(self): print(self.name)class Truck(Car): def __init__(self, name, size): super().__init__(name) self.size = size def print_name(self): # 메서드오버라이딩 print("truck name:", self.name) def print_size(self): print(self.size)if __name__ == '__main__': c1 = Car('sonata') print(Car.brand) # hyundai c1.print_name() # sonata Truck.brand = 'kia' t1 = Truck('bongo', 10) print(Truck.brand) # kia t1.print_name() # truck name: bongo t1.print_size() # 10 print(Car.brand) # hyundai 더 읽어보기 »
python 자료형, 제어문, 함수! 작성일 2021-07-21 Edited on 2026-03-03 In python , serious python 설치12345678brew install python@3.10# ~/.zshrc 에 아래와 같이 경로 및 별칭 지정export PATH=$PATH:/opt/homebrew/binalias python3=python3.10alias python=python3.10alias pip3=pip3.10alias pip=pip3.10 더 읽어보기 »
Spring Boot - MapStruct, Validation! 작성일 2021-06-16 Edited on 2026-03-03 In springboot MapStruct https://mapstruct.org/ 더 읽어보기 »
k8s - Role, Volume! 작성일 2021-05-02 Edited on 2026-03-03 In kubernetes Volumek8s 는 기본적으로 stateless 앱 컨테이너를 관리한다. 더 읽어보기 »
Spring Cloud - k8s! 작성일 2021-03-05 Edited on 2026-03-03 In spring-cloud 개요스프링 클라우드 내부의 여러 라이브러리를 사용해 아래 기능들을 지원하였는데 더 읽어보기 »
k8s - Service, Ingress, MetalLB! 작성일 2021-03-02 Edited on 2026-03-03 In kubernetes Service https://kubernetes.io/ko/docs/concepts/services-networking/service/출처: https://medium.com/google-cloud/kubernetes-nodeport-vs-loadbalancer-vs-ingress-when-should-i-use-what-922f010849e0 더 읽어보기 »
Spring React - RSocket! 작성일 2021-02-05 Edited on 2026-03-03 In spring-reative 개요 https://rsocket.io/https://www.youtube.com/watch?v=ipVfRdl5SP0&t=592s 더 읽어보기 »
Live Streaming Protocol! 작성일 2021-01-28 Edited on 2026-03-03 In 기타 개요영상, 미디어에 관련된 용어를 간략히 설명한다. 더 읽어보기 »
Spring React - Security! 작성일 2021-01-25 Edited on 2026-03-03 In spring-reative Spring Security with WebFlux 그림 출처: Hands-On Spring Security 5 for Reactive Applications 더 읽어보기 »
java - 리액터! 작성일 2021-01-15 Edited on 2026-03-03 In java Reactor Project 참고https://kouzie.github.io/java/java-리액터/#https://kouzie.github.io/java/java-RxJava,-Reactive-Stream/https://projectreactor.io/docs/core/release/api/overview-summary.html 더 읽어보기 »