본문 바로가기

카테고리 없음

2020-05-04 08시 개발자 글 모음 | "[Spring JPA] @RestCo" 외 11개 이야기

ORA-01113 by 이정해 about Oracle,SQL

  • Total System Global Area 1594956476 bytes Fixed Size 453308 bytes Variable Size 536870912 bytes Database Buffers 1056964608 bytes Redo Buffers 667648 bytes Database mounted
  • SVRMGR>recover database ORA-00279:Change ###generated at DD/MM/YY HH:MM:SS needed for thread# ORA-00289:Suggestion : logfile <-- 적용되는 아카이브 로그화일이 보입니다
  • ORA-00280:Change #### for thread # is in sequence # Specify log: [ for suggested | AUTO | FROM |ogsource | CANCLE]


[MySQL][InnoDB] Architecture by 이정해 about MySQL,SQL

  • InnoDB가 스냅 샷을 할당 한 트랜잭션이 없으면 일관된 읽기에서 업데이트 실행 취소 로그에 정보가 있어야 이전 버전의 데이터베이스 행을 빌드 할 수있는 트랜잭션이없는 경우에만 버릴 수 있습니다
  • 클러스터형 인덱스의 레코드는 내부 업데이트(in-place)되며 숨겨진 시스템 열은 이전 버전의 레코드를 재구성 할 수있는 실행 취소로그(undo log) 항목을 가리 킵니다
  • 보조 인덱스 레코드가 삭제 표시되거나 보조 트랜잭션 페이지가 최신 트랜잭션에 의해 업데이트되면 InnoDB는 클러스터형 인덱스에서 데이터베이스 레코드를 찾습니다


GoF의 디자인 패턴(Design Patterns: Elements of Reusable Object-Oriented Software) - 5장 행동패턴 by 최영록 about Design Pattern

  • GoF의 디자인 패턴(Design Patterns: Elements of Reusable Object-Oriented Software) - 4장 구조 패턴에 대한 논의


TIL 2020/05/03 by 정영진


    react router props, axios cookie get, set by 윤해은


      [Java] 문자열 길이 구하기, 제한하기 length() by 우정태

      • public class len { public static void main(String[] args) { String s = "abcdefg"; int s_len = s
      • println("문자열길이 : " + s_len); } }
      • JOptionPane; public class len { public static void main(String[] args) { JOptionPane jon = new JOptionPane(); //swing 패널 String s = "abcdefg"; if(s


      Floating Point 부동소수점 by 이종립

      • Signaling NaNs afford representations for uninitialized variables and arithmetic-like enhancements (such as complex-affine infinities or extremely wide range) that are not in the scope of this standard
      • A quiet NaN bit string should be encoded with the first bit ( ) of the trailing significand field T being 1
      • an infinitely precise result with magnitude at least shall round to with no change in sign; here emax and p are determined by the destination format (see 3


      [Database] 왼쪽 조인 (Left Join) by 장민

      • SELECT 속성 _ 리스트 FROM 테이블 1 LEFT JOIN 테이블 2 ON 테이블 1
      • 속성 = 테이블 2
      • 속성 [ ORDER BY 속성 ];


      [Database] 오른쪽 조인 (Right Join) by 장민

      • SELECT 속성 _ 리스트 FROM 테이블 1 RIGHT JOIN 테이블 2 ON 테이블 1
      • 속성 = 테이블 2
      • 속성 [ ORDER BY 속성 ];


      네트워크 상태 시뮬레이션 툴 by 최흥배

      • 패킷 드럅율이나 레이턴시를 임의로 조정할 수 있어서 네트워크 상태가 좋지 않은 경우에 애플리케이션이 문제 없이 잘 동작하는지 테스트 할 때 사용하면 좋다
      • OSX를 지원하고 Windows는 지원하지 않는다(Windows의 경우 이런 기능을 하는 툴이 MS에서 제공하는 것이 있다)
      • Windows OS에서 패킷 드랍율이나 지연을 만들어 주는 네트워크 상태 시뮬레이션 툴


      expo로 앱 만들어본 후기(vs vanilla react-native) by 한정

      • Follow all the topics you care about
      • and we’ll deliver the best stories for you to your homepage and inbox


      [Spring JPA] @RestController / @ResponseBody / @RequestBody by 전지윤 about JPA,Spring

      • 전통적인 Spring MVC 컨트롤러인 @Controller와 Restful 웹 서비스의 컨트롤러 @RestController의 큰 차이점은 HTTP Response Body가 생성되는 방식이다
      • Spring MVC의 컨트롤러에서는 데이터를 반환하기 위해 @ResponseBody 어노테이션을 활용해야 한다
      • 이렇게 JSOn 포맷으로 전송된 request parameter 데이터를 받을 액션 메서드의 파라미터 변수에는 @RequestBody 어노테이션을 붙여주어야 한다