일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- reactor
- 웹앱
- reactive
- spring reactive
- 서버운영
- ipTIME
- 공유기 서버
- 웹 커리큘럼
- Spring Batch
- 웹 스터디
- Spring Framework
- reactor core
- Today
- Total
목록분류 전체보기 (267)
Hello World
Recently working on an Android experiment, I wanted to send emails using a SMTP server, using authentication and encryption, from an android app.Well, I found out that javax.mail on Android is not a really good option, since it depends on awt classes (legacy I guess) ; some people have tried to adapt it so that you don’t require the whole awt package, but I had little success with that; not ment..
Um Entwicklern die Arbeit mit ReactJS in WebStorm zu erleichtern, hat das WebStorm-Team eine Liste der wichtigsten Tools zusammengestellt. In einem Blogposterläutert Ekaterina Prigara, wie die verschiedenen Werkzeuge dabei helfen können, besseren Code zu schreiben. Der Fokus liegt dabei auf Linting – der Qualitätsanalyse von Code – , Refactoring, also der Strukturverbesserung von Quelltexten, un..
This post is dedicated to REST, an architectural style of shaping webservices and the most misunderstood concept in the history of IT. This post is addressed to you who is designing webservice apis not being fully aware what REST actually means. I’m trying to give you the idea. This post is also addressed to you who think to know what REST means, when in reality you have no clue, just yet. Yes i..
Lightweight HTTP Request Client Libraries https://github.com/Mashape/unirest-java
Date objectsDate objects are based on the number of milliseconds since January 1,1970 UTC. They have no syntax, but are stated using constructors, like below:1new Date();2new Date(value);3new Date(dateString);4new Date(year, month[, day[, hour[, minute[, second[, millisecond]]]]]);You can use them like this:1var today = new Date();2var birthday = new Date('November 16, 1994 01:00:00');3var birth..
자바에는 기본 자료형인 Primitive Type과 객체로 제공되는 Boxed Primitives Type이 있다. (보통 Primitive를 감싸고 있다고 해서 Wrapper 클래스라고도 불린다.)자바 1.5 이상부터 Primitive와 Boxed Primitives간의 변환(Cast)을 자동으로 해주는 Autoboxing/AutoUnboxing을 지원하면서 편리하게 사용할 수 있다.그럼 Primitive와 Boxed Primitives 둘 중 무엇을 사용해야 할까? 스택 영역에 저장되는 Primitive(기본자료형)과 힙영역에 저장되는 Boxed Primitives(객체형)간에는 메모리 효율과 접근속도면에서 Primitive Type이 뛰어나다.그럼 언제 Boxed Primitives를 사용하는게 좋..
from http://techholic.co.kr로가스터(logaster)는 웹사이트에서 간단한 설정을 단계별로 선택하기만 하면 로고를 자동 생성할 수 있게 해주는 서비스다. 로고 타입과 컨셉트, 편집, 저장 4단계 설정만 거치면 된다. 로고를 만들려면 원하는 명칭을 입력한 다음 해당 로고를 만들려는 서비스나 회사명, 제품명이 어떤 종류인지 카테고리를 고르면 된다. 버튼만 누르면 수많은 로고가 만들어진다. 이 가운데 원하는 걸 고른 다음 편집을 거쳐 로고 모양 자체는 물론 색상, 폰트까지 모두 원하는 대로 편집할 수 있다. 원하는 로고 형태가 만들어졌다면 저장을 누르면 간단하게 무료로 로고를 만들 수 있다. 물론 로고 자체는 무료로 만들 수 있지만 파일을 저장해 내려 받으려고 하면 간단한 회원 가입이 필..
This tutorial is about reflection, the ability of a computer program to examine and modify the structure and behavior (specifically the values, meta-data, properties and functions) of the program at runtime.We are going to explain what reflection is in general and how can be used in Java. Real uses cases about different reflection uses are listed in the next chapters.Several code snippets will b..
구글에서 Git에 관해 검색하면 대부분이 Git 명령어 혹은 EGIT (이클립스의 Git 플러그인) 결과가 나온다.GUI 환경에 이미 익숙한 윈도우 유저들에게는 사실 명령어로 툴을 다루는것이 어색한데,이런 사용자들을 위해 Atlassian (JIRA를 만든 그곳) 에서 GIt GUI 툴인 Sourcetree를 만들었다.(Max os와 window만 지원한다. 리눅스는ㅠ) 굳이 Git을 사용하는데 Sourcetree가 필요한가? IDE (이클립스, 인텔리J 등)에서 제공하는 플러그인으로 사용하면 되지 않나?(하물며 Sublime Text에서도 Git 플러그인을 제공한다)라는 반응을 가질수도 있는데 내가 생각하기에는 2가지 이유로 플러그인 대신에 Source tree를 사용해야 한다. 1. 플러그인에 비해 ..