본문 바로가기

Programing78

Reactive란? 리엑티브 프로그래밍 VS 리엑티브 시스템 http://blog.lespinside.com/reactive-programming-versus-reactive-systems/ 영상 https://www.lightbend.com/blog/lightbend-podcast-reactive-programming-vs-reactive-systems-explained 요약 Reactive: Non-Blocking & Async Reactive Programming MSA를 효율적으로 할 수 있게… Event VS Message Event란 불특정 다수에게 보내는 시그널 Message란 특정 목적지에 보내는 시그널 긴 내용을 읽어봤으나 잘 이해가 되지 않.. 2017. 7. 27.
slice 타입 Append시 오류 Case-Study 아래 글은 http://allegro.tech/2017/07/golang-slices-gotcha.html 글을 읽고 나름 실습 및 정리해 본 내용이다. 관련 코드는 https://github.com/tomining/go_tutorial/blob/master/src/tutorial/ch3/SliceFullCapacityBugExample.go 에서 확인할 수 있음을 미리 언급한다. 들어가며 Go 언어에는 slice라는 자료 구조가 존재한다. 만약 자바 개발자라면 Vector와 비슷하다고 생각하면 쉬울 것이다.(하지만 Vector와 같진 않다.) “Go언어 웹 프로그래밍 철저 입문” 책에서는 Array보다는 slice 타입을 더 많이 활용한다고 한다. Array와 Slice는 유사하지만 다르다.(“Go언어.. 2017. 7. 25.
Jackson을 이용하여 JSON -> POJO 변환시 POJO에 존재하지 않는 property가 있는 경우 예를 들어보자 { “no”: 1234, “id”: “test”, “name”: “John”, “age”: 20 } @Data public class Member { private int no; private String id; private String name; //private int age; } 위 처럼 되어 있는 경우 Member 객체로 변환할 때 오류가 발생할 것이다. age 라는 속성을 알 수 없기 때문이다. 이를 해결하는 방법은 2가지가 있다.(아마 그 외에도 있으리라 생각되지만 잘 모르겠다.) 1. POJO 클래스에 @JsonIgnoreProperty(ignoreUnknown = true) 를 붙여주는 방법 @JsonIgnoreProperty(ignoreUnknown = true) @Dat.. 2017. 7. 21.
Spring에서 Json을 파라메터로 넘겼을 때 어떻게 객체로 받을 수 있을까? 먼저 "Spring에서 Request 또는 Response로 전달되는 파라메터 정보를 Controller에서 어떻게 Java 객체로 받을 수 있을까”라는 의문이 먼저 들었다. 예를 들면 http://test.domain.com/test?no=1234&id=testId 라는 url이 있다고 가정하자. @RequestMapping(value=“test”, method = RequestMethod.GET) public void test(@RequestParam(“id”) String id, @RequestParam(“no”) int no) { // 구현로직 } 아마 Controller의 메소드는 위 처럼 구현되어 있을 것이다. 여기서 id와 no는 어떻게 각각 String과 int 형으로 변환이 되는 것일까?.. 2017. 7. 21.