Archive: 2022/4
Spring Native with graalvm
https://giljae.medium.com/spring-native-%EB%B2%A0%ED%83%80-%EC%86%8C%EA%B0%9C-767d7bf46e01
Configure hexo
Configuring Hexo Blog1234567891011> yarn global add hexo-cli> hexo init devlog> cd devlog> npm install> yarn> hexo server and then you can see the blog page if you access to localhos
Cross Origin / Same Origin
CROSS ORIGIN / SAME ORIGIN이는 HTTP 요청에 대해서 어떤 요청을 하느냐에 따라 각기 다른 특징을 가지고 있기 때문이다. HTML → 기본적으로 Cross-Origin 정책을 따름link 태그에서 다른 origin의 css 등의 리소스에 접근하는 것이 가능img 태그등에서 다른 리소스에 접근하는 것이 가능 XMLHttpRequest,
Webflux RouterFunction
RouterFunctionFunctional Endpoint를 사용 하기 위해서는 함수형 인터페이스인 RouterFunction의 구현체를 만들어서 스프링 빈으로 등록 시켜야 합니다. ServerRequest는 Request에 대한 모든 정보를 담고 있으며 클라에서 넘겨준 데이터를 추출 하여 사용 하면 됩니다. nest Method를 통해 공통으로 acce