분류 전체보기 (142) 썸네일형 리스트형 Domain 무료 사이트 na.to 18z.kr cor.kr ba.ro https://www.freenom.com/en/index.html?lang=en [Java] SSL/TLS 지원 버전과 디폴트 프로토콜 변경 에러 메시지 error msg : javax.net.ssl.SSLException: Received fatal alert: protocol_version 에러 원인 HTTPS 통신 시 SSLProtocol 프로토콜 버전이 권장하는 버전보다 낮아서. https://www.ateam-oracle.com/tls-and-java 에러 메시지 error msg : javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure 에러 원인 HTTPS 통신 시 서버에서 지원하는 TLS 버전과 자바 클라이언트의 TLS 버전이 맞지 않아서. ☝🏻HTTP, HTTPS, HTTP/2, SSL, TLS 란? HTTP(Hypertext Transfer P.. Spring Security OAuth2 OAuth란? https://minwan1.github.io/2018/02/24/2018-02-24-OAuth/#undefined Wan Blog WanBlog | 개발블로그 minwan1.github.io accessDecisionManager Authentication Handler AuthenticationSuccessHandler 인터페이스를 재정의 하는 추상 클래스 생성, 성공 시에 호출하는 메소드 onAuthenticationSuccess를 override하여 success시의 로직을 처리할 메소드를 호출해준다. 이 메소드는 해당 추상 클래스를 상속받은 클래스에서 override하여 구현해주면 된다. onAuthenticationSuccess 메소드 호출 시 인자로 넘어오는 객체 HttpServletRequest 객체: 웹에서 넘어온 Request 값을 가지고 있는 객체 HttpServletResponse 객체: 출력을 정의할 수 있는 객체 Authentication 객체: 인증에 성공한 사용자의 정보를 가지고 있는 객체 ps >http://gdthink.blogspot.co.. HttpMessageConverter HttpMessageConverter SpringFramework에서 제공하는 인터페이스로 HTTP Request Body 정보를 객체로 변환하거나, 객체를 HTTP Response Body 로 변환한다. docs.spring.io/spring-framework/docs/5.0.7.RELEASE/spring-framework-reference/web.html#mvc-config-message-converters HttpMessageConverter 는 XMLHttpRequest 의 응답 메시지를 인코딩한다. XMLHttpReqeust 화면이 없는 내장 브라우저로 HTML 문서를 받을 필요가 없고, 통신에 필요한 데이터를 XML형식으로 주고 받을 수 있음 따라서 통신하는데 필요한 데이터를 XML 형식으로 .. swift memory, closure Memory Management ARC(Auto Reference Counting) Reference Type (Heap memory에 저장) => 자동으로 관리 (참조 포인터 수를 counting.. 그 수가 0이 되면 toss.. Garbage Collection 기법과는 다름) > Garbage Collection : 힙 메모리를 간헐적으로 관찰하여 참조하지 않으면 날리는 방식 -> 예측 불가능한 불규칙한 메모리 정리 Influencing ARC strong ( default ) 기본적인 Reference Counting 방식 해당 포인터가 더 이상 해당 메모리를 참조하지 않을 때까지 힙 메모리 안에 머물도록 weak 힙에 있는 것을 사용하지 않는 다면, 힙에서 제거 후 nil로 설정 ( : opt.. Kotlin kotlin 언어 실습해보기 https://kotlinlang.org/docs/reference/basic-syntax.html Basic Syntax - Kotlin Programming Language kotlinlang.org https://try.kotlinlang.org/#/Examples/Hello,%20world!/An%20object-oriented%20Hello/An%20object-oriented%20Hello.kt Try Kotlin Try Kotlin right in the browser. try.kotlinlang.org Swift class / struct / enum class : property와 function을 가질 수 있음, 초기화 함수, 상속, reference type(pointer) 전달 struct : property와 function을 가질 수 있음, 초기화 함수, value type 전달 enum : case 저장소, value type 전달 value VS reference 전달 value copy.-> 즉 받는 변수의 타입까지 copy var x = y ( : array ) x.append(val) // y에 반영되지 않음 let 변수에 할당한 경우 변경할 수 없음 ( 상수임 (immutable)) let x = y ( : array ) x.append(val) reference 같은 메모리를 바라봄. Me.. 이전 1 ··· 12 13 14 15 16 17 18 다음