본문 바로가기

카테고리 없음

2020-05-26 08시 개발자 글 모음 | "Spring에서 AOP를 구현하는 방" 외 7개 이야기

React Native 카카오 로그인 연동하는 방법 by 추영식

  • - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:( id )annotation {
  • - (void)applicationDidBecomeActive:(UIApplication *)application {
  • xml 파일을 열고 아래의 코드를 추가한다


Go cheatsheet by 이종립 about GoLang

  • // Stringer is implemented by any value that has a String method
  • // The String method is used to print values passed as an operand
  • // to any format that accepts a string or to an unformatted printer


Get 요청시 LocalDate 필드에 2월 31일자가 올 경우 정상 처리 방법 by 이동욱

  • 실제로 문자열을 LocalDate로 변환 해보시면 아래와 같이 2월 31일이 29일로 잘 변환되는 것을 확인할 수 있습니다
  • @Test public void POST_20200231_날짜도_LocalDate바인딩이_가능하다() throws Exception { String content = "{\"date\":\"2020-02-31\"}"; mvc
  • ObjectMapper의 변환처럼 문자열 2020-02-31 값이 LocalDate 2020-02-29 값으로 잘 변환되는 것을 확인할 수 있습니다


20200525(Mon) - 삼프로 퇴근길 by 최영록

  • 백신에 대한 기대감이 커서 다른 이슈들은 다 묻히는 중
  • 수급 측면상 지금 개인들이 많이 사고 있고하니 큰 문제 없을 거라고 본다
  • 다음주 미국에서 발생하는 코로나 확진자 수를 살펴볼 필요가 있다


산술 표현식 계산을 위한 2중 스택 알고리즘 by 이종립 about Algorithm

  • split ( "\\s" ); final Stack < String > operators = new Stack <>(); final Stack < Double > values = new Stack <>(); for ( String token : input ) { switch ( token ) { case "+"
  • push ( token ); case "(" -> { // do nothing } case ")" -> { String op = operators
  • pop (); switch ( op ) { case "+" -> v = values


그냥 저냥 #위클리뉴스 #78 by 최승호

  • 10 11 12 13 14 15 16
  • 17 18 19 20 21 22 23
  • 24 25 26 27 28 29 30


[Javascript/ECMAScript6/ES6] 삼항 연산자 by 장민 about Javascript

  • const array = []; let text = '' ; if ( array
  • length === 0 ) { text = ' 배열이 비어있습니다
  • ' ; } else { text = ' 배열이 비어있지 않습니다


Spring에서 AOP를 구현하는 방법과 Transactional by 민동휘 about Spring

  • SpringAopTest public interface SpringAopTest { void test1(); } SpringAopTestImpl @Component public class SpringAopTestImpl implements SpringAopTest{ @Transactional @Override public void test1() { System
  • class) public static class EnableTransactionManagementConfiguration { @Configuration(proxyBeanMethods = false) @EnableTransactionManagement(proxyTargetClass = false) @ConditionalOnProperty(prefix = "spring
  • matchIfMissing = false) public static class JdkDynamicAutoProxyConfiguration { } @Configuration(proxyBeanMethods = false) @EnableTransactionManagement(proxyTargetClass = true) @ConditionalOnProperty(prefix = "spring