일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- spring integration
- Database
- 자바네트워크
- write by GPT-4
- 자바
- 시스템
- Java
- 고전역학
- 파이썬
- 역학
- JVM
- python
- kotlin
- 유닉스
- oracle
- spring data jpa
- 웹 크롤링
- NIO
- 소프트웨어공학
- flet
- 리눅스
- GPT-4's answer
- chatGPT's answer
- jpa
- 코틀린
- android
- 자바암호
- write by chatGPT
- 데이터베이스
- 인프라
- Today
- Total
목록오래된글 (226)
기억을 지배하는 기록
JNI? JNI는Java Native Interface의 약어입니다.Java의 프로그램으로부터 다른 언어(C언어나 C++언어등)로 개발된 native code의 프로그램을 이용하기 위한 API입니다. gcc가 인스톨되어 있지 않은 경우는 인스톨 CD 혹은http://gcc.gnu.org/로부터 다운로드해 인스톨 해 주세요. Sample 작성 Java file public class Hello..
Components of the JMX notification model MBean events are wrapped as notification objects and broadcast from MBeans. Notification listeners, like event listeners, register with MBeans in order to receive notifications, including user-deined notifications. Component Descripton Notification broadcaster An object that implements the javax.management.NotificationBroadcaster interfa..
Benefits of using JMX Using a Java-based solugion such as JMX offers JMX servral benefits, some of which are probably evident to you as a Java programmer, For example, Java is a portable language, so you can develop your application without regard to platform dependency, In addition to the benefits of the Java language, JMX has some persuasive advantages. Ease of use Leveraging..
14. ServerSocketChannel 클래스와 SocketChannel 클래스 이제 실전에 들어가기 전에 ServerSocketChannel 클래스와 SocketChannel 클래스에 대해 먼저 알아보자. 이들은 net패키지의 ServerSocket클래스와 Socket클래스를 채널로서 다루고자 할 때 쓰는 SelectableChannel이다. 이들 네트워크 관련 채널들은 독자적으로 ..
13. Selector 클래스와 SelectionKey 클래스 java.nio.channels.Selector 클래스는 SelectableChannel(채널)들을 관리하는 클래스로서 SelectionKey의 인스턴스로 관리한다. 이런 채널들을(엄밀히 말하면 SelectableChannel클래스) 관리하는 것이 바로 Selector 클래스의 역활이다. Selector가 관리하는 SelectableChannel들은 전..
12. SelectableChannel 클래스 자, 이제 1.4버전에서 새롭게 추가된 네트워크를 입출력 부분을 보자. 우선 크게 본다면 다음 3가지의 클래스를 반드시 이해를 해야한다. SelectableChannel 클래스 : 채널로서 관리대상(예들들어 서버소켓, 소켓....) Selector 클래스 : 채널 관리자. SelectionKey 클래스 : 채널..
11. FileChannels 클래스 FileChannels는 파일입출력을 위한 채널로 AbstractInterruptibleChannel 클래스를 상속해서 비동기적으로 중단될 수 있게 되어있다. 그리고 ByteChannel 인터페이스를 구현해서 읽기와 쓰기를 동시에 할 수 있다. 1. FileChannels 클래스 객체 생성 FileChannels 클래스는 스스로 인스턴스를..