10월, 2020의 게시물 표시

MYSQL sleep connection 정리 설정하기

 https://sarc.io/index.php/mariadb/1154-sleep-session

QUERY 특정 문자열 들어간 데이터들을 문자열 치환과 함께 동시에 업데이트

  UPDATE MyTable SET StringColumn = REPLACE (StringColumn, 'GREATERTHAN' , '>' ) WHERE articleItem LIKE '%GREATERTHAN%' UPDATE MyTable SET StringColumn = REPLACE (StringColumn, 'SearchForThis' , 'ReplaceWithThis' ) WHERE SomeOtherColumn LIKE '%PATTERN%' https://stackoverflow.com/questions/4271186/how-can-i-use-mysql-replace-to-replace-strings-in-multiple-records

Building Applications with Spring 5 and Vue.js 2

 http://www.yes24.com/Product/Goods/67034874  -해외 원서 ebook http://www.yes24.com/Product/Goods/86038744?OzSrank=1 -국내번역판 책버전

JAVA Resttemplate 을 이용해서 post 로 요청 보내기

 https://howtodoinjava.com/spring-boot2/resttemplate/resttemplate-post-json-example/ @Test public void testAddEmployeeWithoutHeader_success() throws URISyntaxException {      RestTemplate restTemplate = new RestTemplate();      final String baseUrl = " http://localhost: " +randomServerPort+ "/employees/" ;      URI uri = new URI(baseUrl);     //Nodejs 에게 보낼려면 이 부분을 JSONObject 로 만들면 될듯?      Employee employee = new Employee( null , "Adam" , "Gilly" , "test@email.com" );             HttpHeaders headers = new HttpHeaders();      headers.set( "X-COM-PERSIST" , "true" );         headers.set( "X-COM-LOCATION" , "USA" );             HttpEntity<Employee> request = new HttpEntity<>(employee, headers);              ResponseEntity<String> result = restTemplate.postForEntity(uri, request, String. class );             //Verify request succeed      Assert.assertEquals( 201 , result.ge

JAVA JSONObject 사용법

https://androman.tistory.com/38

pm2 로 로그파일 보기 밑 관리

  sudo pm2 show 0 이걸로 올라간 서비스 이름과 로그파일 경로를 알수 있음 tail -f /home/ec2-user/.pm2/logs/stream-error.log -n 100 이런식으로 보면 됨 출처:  https://tnsdnjs.tistory.com/entry/pm2-로그보기  [SeekU] http://magic.wickedmiso.com/118 - pm2 log 생성하는거 세부 옵션 정하는 방법 https://lahuman.github.io/pm2-logrotate/ -pm2 log를 rotation 시키는 방법

자바 open jdk

 https://github.com/ojdkbuild/ojdkbuild

스프링 부트에 jsp 적용하기

 https://jsijsi99.tistory.com/10

백앤드 트리

 https://gall.dcinside.com/board/view/?id=programming&no=1386045&_rk=EYz&search_pos=-1337567&s_type=search_all&s_keyword=nuxt&page=1 목표 게시판 작성 스프링 부트를 이용한 마이크로서비스 이용 gradle이용 zuul (api gateway)eureka (감시서버)인증서비스(서버)프로필서비스(서버)게시판 서비스(서버) 마이바티스 추천함(쿼리작성 연습해야함) 프론트엔드react , vue js꼭 webpack으로 구성할것옵션 type nuxtjs 데이터베이스mysql mariadb postgresql 편한거 쓸 것마스터 슬레이브 구성 꼭 할것인덱스도 사용해볼것 elastic search를 이용한 검색처리 CICD자동빌드젠킨스gitlabcicd빌드 결과 슬랙으로 자동으로 결과 채팅으로 나오게 만들것 자바스크립트 테스트있다고함제이유닛 해야함 AWS 사용할것fargates3cognito(인증) 게시판 가즈아

React MVVM 패턴

https://m.blog.naver.com/pjt3591oo/222034351034

알아두면 좋은 기술

 ci/cd jenkins - 무중단 서비스 기법 Front는 NextJs 백엔드 기술로 GraphQL Apollo 라이브러리

AWS 에서 미디어 파일 클라로 전송 전략

 Streaming 서버는 짜피 음악의 플레이 타임만 있으면 된다. 이건 DB에 기록된걸로 사용하자. client 는 s3에 있는 파일을 create stream하여 보내주자 https://docs.aws.amazon.com/ko_kr/sdk-for-javascript/v2/developer-guide/requests-using-stream-objects.html