일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 데이터베이스락
- tomcat설정
- DynamicWebProject
- 백준
- servlet프로젝트
- 코틀린기초
- KotlinInAction
- S2139
- 트랜잭션속성
- 우아한테크코스
- 자바비동기
- subprocess에러
- 트랜잭션성질
- 무중단배포
- 트랜잭션
- 알고리즘
- kotlin
- Google Place Photo API
- 코틀린뽀개기
- jsp프로젝트
- 코틀린
- mysqld.sock
- ObjectCalisthenics
- 테코톡
- java
- 객체지향생활체조
- 레벨로그
- GithubOAuth
- 리버스프록시
- 스프링트랜잭션
- Today
- Total
목록Stacks (5)
초이로그
Exceptions should be either logged or rethrown but not both In applications where the accepted practice is to log an Exception and then rethrow it, you end up with miles-long logs that contain multiple instances of the same exception. In multi-threaded applications debugging this type of log can be particularly hellish because messages from other threads will be interwoven with the repetitions o..
Google Maps API를 프로젝트에 사용중인데, 썸네일을 위한 이미지를 가져오기 위해 Place Photo API를 사용하고자한다. 구글 API에서 장소의 사진을 받기 위해서는, 1) API 발급 받기 2) Place Search API로 장소 정보에 대해 얻어오기. 검색된 장소 response의 photo -> photo_reference 값으로 이미지를 불러올수 있다. 3) Place Photos API로사진 불러오기 그런데. 공식 API 문서에서는 응답 데이터를 다음과 같이 서술하고 있다. The response of a successful Place Photo request will be an image. The type of the image will depend upon the type ..
분명히 로컬과 원격 레포지토리가 일치하는데 내가 생성도 하지 않은 추적하지 않는 파일이 생겼다.. 원인부터 말하자면 "폴더 이름이 한글"이기 때문이다. 될수 있으면 폴더명을 한글로 만들지 않는 것이 베스트지만 알고리즘이랑 TIL에 간간히 폴더이름을 한글로 해놨었기 때문에.. 해결방법을 간단하게 남겨둔다. 아래와 같은 상태면 주로 폴더명이 한글이기 때문에 문제가 발생했다고 생각하면 된다. 이상태로 다른 파일과 함께 커밋해버리면 이렇게 폴더가 복제되서 한개가 더 생긴다.... 해결방법 1. 레포를 다시 클론받는다. 2. 명령어 두개를 입력해서 깃 속성을 변경한다. git config --local core.precomposeunicode false git config --global core.quotepat..
mariaDB 설치 후, python 장고와 연동하기 위하여 기본이라는 패키지 'mysqlclient'를 설치하는데 오류나서 이를 해결하려고 다음 명령어로 설치했는데... $ sudo apt-get install libssl-dev $ sudo apt-get install mysql-server $ sudo apt-get install mysql-client $ sudo apt-get install libmysqlclient-dev $ pip install mysqlclient mysqlclient는 설치가 되었지만 그 이후 mysql 접속시도시 'Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock'라는 에러 메세..
Grafana란, 다중 플랫폼 오픈 소스 분석 및 대화 형 시각화 웹 응용 프로그램으로 데이터 소스에 연결하여 차트, 그래프 등으로 데이터를 시각화하여 보여주는 대시보드이다 쉽게 오픈소스 시각화 툴이라고 생각하면 된다 MongoDB를 연결하려고 하는데 한국말로 되어있는 자료가 별로 없고 Grafana를 처음 접해 어려웠기 때문에 정리해보았다 1. Grafana 설치 및 실행 - 설치: 공식사이트 에 나와있는대로 따라하면 된다(명령어 몇개만 입력하면 되니까 이부분은 따로 설명하지 않겠다) 나는 Ubuntu(64Bit) 버전으로 설치 Download Grafana Overview of how to download and install different versions of Grafana on differen..