일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 고전역학
- 리눅스
- 코틀린
- 자바암호
- oracle
- write by chatGPT
- GPT-4's answer
- 파이썬
- jpa
- 인프라
- write by GPT-4
- 자바
- 소프트웨어공학
- 자바네트워크
- 시스템
- chatGPT's answer
- spring integration
- python
- flet
- kotlin
- Database
- 데이터베이스
- 유닉스
- NIO
- 역학
- Java
- spring data jpa
- 웹 크롤링
- JVM
- android
- Today
- Total
목록Java (87)
기억을 지배하는 기록
On a recent project I had to call Java REST services from a .NET Client. Several problems came up – ranging from authentication to hidden performance issues. I want to share my lessons learned and encourage you to share your own opinions and experiences on this topic. The Context: REST to automate analysis processes in Continuous IntegrationLet’s start by giving you some co..
예전에 TestNG을 사용하면서 JUnit보다 발전된 단위 테스트 도구라고 생각했었습니다. 2가지 큰 차이가 있었는데 1. Test Annotation 지원(JUnit에서 지원하기 전부터) 2. Test Parameter 지원(Test을 위한 Data Set을 정해두고 Parameter로 전달 할수 있었음.) 1. 번은 현재 JUnit에서 지원하고 있지만 2 번은 아직..
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들은 전..