반응형
반응형
본문 바로가기

공부673

Java RMI (Remote Method Invocation) (2) Java RMI (Remote Method Invocation) (2) “Hello World” RMI Application 하나의 RMI Application을 작성 하기 위해서는 3개 정도의 Java Files이 필요 하다. - 원격 인터페이스 : 자바 인터페이스 - 원격 인터페이스를 구현한 클래스 : 클래스 - RMI 서버 Application : 클래스 - RMI 클라이언트 Application : 클래스 ““ Hello World ” – 원격 인터페이스 “ 원격 인터페이스는 원격 객체에 대하여 클라이언트가 호출 할 수 있는 비즈니스 메소드를 정의 한다. 클라이언트는 원격 인터페이스에서 정의된 메소드만 서로 다른 실행환경에서 원격으로 호출 할 수 있다. 이렇게 원격에서 호출 가능한 메소드를 “원격.. 2021. 4. 3.
Java RMI (Remote Method Invocation)을 알아보자 Java RMI (Remote Method Invocation)을 알아보자 1. 개요 두 개의 JVM이 통신해야 할 때 Java RMI는 서로 소통할 수 있는 하나의 옵션입니다. 이 아티클에서는 Java RMI 기술을 보여주는 간단한 예시를 보도록 하겠습니다. 2. 서버 만들기 RMI 서버를 생성하는 데에는 필요한 단계는 두 가지가 있습니다. - i) 클라이언트/서버 관계를 정의하는 인터페이스를 만듭니다. - ii) 해당 인터페이스의 구현을 생성합니다. RMI Java 애플리케이션을 작성하려면 아래 단계를 따라야합니다. 원격 인터페이스 정의 (Define the remote interface) 구현 클래스 (원격 객체) 개발 (Develop the implementation class 서버 프로그램 개발.. 2021. 4. 3.
[OODP] Singleton Pattern (싱글톤 패턴) [OODP] Singleton Pattern (싱글톤 패턴) 1. webdevtechblog.com/%EC%8B%B1%EA%B8%80%ED%84%B4-%ED%8C%A8%ED%84%B4-singleton-pattern-db75ed29c36 싱글턴 패턴(Singleton Pattern) 자바와 스프링의 싱글턴 패턴(Singleton Pattern)과 차이점 webdevtechblog.com 2. velog.io/@kyle/%EC%9E%90%EB%B0%94-%EC%8B%B1%EA%B8%80%ED%86%A4-%ED%8C%A8%ED%84%B4-Singleton-Pattern 자바 싱글톤 패턴 (Singleton Pattern) 안녕하세요. 이번 포스팅에서는 자바의 싱글톤 패턴에 대해서 이야기하고자 합니다. 무한으.. 2021. 4. 1.
Week 04-05 Lectures Week 04-05 Lectures Week 04 - 01 Woher kommen Sie? Dialog A : Herr Kang, woher kommen Sie? B : Ich komme aus Korea. Und Sie? Woher kommen Sie? A : Ich komme aus Deutschland, aus Berlin. 단수 1인칭 ich 2인칭 du / Sie 3인칭 er / sie / es 복수 1인칭 wir 2인칭 ihr / Sie 3인칭 sie ich bin du bist Sie sind er / sie / es ist wir sind ihr seid / Sie sind sie sind ich komme , heisse, gehe du kommst , heisst, gehst Sie k.. 2021. 3. 29.
[Week 04] Lectures [Week 04] Lectures # Useful functions sample(X, #sample, replace = FALSE, ...) [41 sample split] sample - random-sampling with and without (default) replacement set.seed(2018) x 25) mtcars[mtcars$mpg > 25, ] [42 merge which] Merge Merge(df1, df2, ...) - Join two data frames into one with common variables x 2021. 3. 28.
[Week 03] Lectures [Week 03] Lectures [33 data loading] # Import swimming_pools.csv: pools pools 2021. 3. 28.
[OODP] Strategy Pattern (전략 패턴) 전략 패턴 (Strategy Pattern) 한글 설명 victorydntmd.tistory.com/292 [디자인패턴] 전략 패턴 ( Strategy Pattern ) 전략 패턴 ( Strategy Pattern ) 객체들이 할 수 있는 행위 각각에 대해 전략 클래스를 생성하고, 유사한 행위들을 캡슐화 하는 인터페이스를 정의하여, 객체의 행위를 동적으로 바꾸고 싶은 경우 victorydntmd.tistory.com 전략 패턴 (Strategy Pattern) 영어 설명 refactoring.guru/design-patterns/strategy Strategy The Strategy pattern lets you isolate the code, internal data, and dependencies o.. 2021. 3. 28.
에브리타임 글/댓글 Word 파일로 만들기 에브리타임 글/댓글 Word 파일로 만들기 1. 파일 설치하기 2. ID와 PW 입력하기 3. 몇 분 후 워드 파일 (.docx)이 만들어집니다. 자신이 작성한 댓글과 작성 글을 한 눈에 볼 수 있습니다. 2021. 3. 27.
[어댑터 패턴] Class Adaptor vs. Object Adaptor [어댑터 패턴] Class Adaptor vs. Object Adaptor Class Adapter uses inheritance and can only wrap a class. It cannot wrap an interface since by definition it must derive from some base class. Object Adapter uses composition and can wrap classes or interfaces, or both. It can do this since it contains, as a private, encapsulated member, the class or interface object instance it wraps. - 클래스 어댑터는 상속(Inhe.. 2021. 3. 27.

반응형