일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
29 | 30 | 31 |
- spring reactive
- Spring Framework
- 웹 커리큘럼
- reactive
- ipTIME
- 웹앱
- reactor
- reactor core
- Spring Batch
- 공유기 서버
- 서버운영
- 웹 스터디
- Today
- Total
목록Java/Core (23)
Hello World
n Java, a special null value can be assigned to an object’s reference and denotes that the object is currently pointing to unknown piece of data. ANullPointerException is thrown when an application is trying to use or access an object whose reference equals to null. The following cases throw that exception:Invoking a method from a null object.Accessing or modifying a null object’s field.Taking t..
단 50줄이면 Java에서 OTP를 구현할 수 있습니다. 제가 OTP를 구현해야겠다고 생각한 계기는, '클라이언트와 서버 간 REST 통신시, 해커로부터 데이터 변조 공격을 막기 위해서 일회용 비밀번호(OTP)를 사용하면 어떨까?' 라는 생각에서 출발했습니다. (적용은 안했지만, 누군가에게 도움이 되길 바라며...) OTP (One Time Password) 고정된 패스워드 대신 무작위로 생성되는 일회용 패스워드를 이용하는 사용자 인증 방식. 은행에서 OTP 단말기나, OTP 카드를 사용해보신 분이라면 한 번쯤 생각해보셨을 겁니다. '서버랑 통신하는건가..?' 사실, OTP는 단말기와 서버가 통신하는게 아닙니다.미리 정의된 비밀키와 시간 정보를 토대로 Hash 처리하여 비밀번호를 만들어냅니다. 핵심은 시..
Table Of Contents1. Why annotations?2. Introduction3. Consumers4. Annotations syntax and annotation elements5. Where can be used6. Use cases7. Built in annotations8. Java 8 and annotations9. Custom annotations10. Retrieving Annotations11. Inheritance in annotations12. Known libraries using annotations13. Summary14. Download15. Resources In this article we are going to explain what Java annotatio..