본문 바로가기

윈도우 intellij 에서 맥용 키보드(MAC OSX 10.5+) 방식 사용하기 맥에서 개발하다 윈도우 환경에서 개발할 일이 있어서 intellij를 설치하고 맥용 단축키를 쓸려니 설정을좀해줘야한다. 먼저 Help -> Edit Custom Properties. -> keymap.windows.as.meta=true 를 설정해준다 키맵을 "Mac OS X 10.5+" 로 바꿔준다. 오토핫키를 설치하고 왼쪽 알트와 윈도우키를 바꿔준다. 오토핫키 사용법은 텍스트 파일을 열어서 LAlt::LWin LWin::LAlt 입력하고 파일확장자를 ahk로 저장후 실행시켜준다. 더보기
angular httpclient 에러메세지가 null 일때 해결법 response error null angular 버전을 4.3때로 올리고 HttpClient 를 이용하여 Angular api 에 나온대로 해서 error 작업을 하던중 원하던대로 body의 error메세지가 찍히지 않고 null 이 찍힌다. 좀 알아보니 text로 서버에서 리턴한경우는 리턴타입을 아래와 같이 명시해줘야 error메세지에 찍힌다.. save(account: any): Observable { return this.http.post('api/register', account, { responseType: 'text' }); } this.registerService.save(register.value).subscribe(() => { this.success = true; }, (response) => this.processEr.. 더보기
페이스북 로그인 스프링 (#12) bio field is deprecated for versions v2.8 and higher error (facebook spring) Jhipster로 페이스북 로그인을 구현하던중 (#12) bio field is deprecated for versions v2.8 and higher와 같은 에러가 발생하였다. 페이스북 라이브러리를 3점대로 바꾸면된다는데 이거는 안해봤고아래와같이 social service 에 적어준다. @PostConstruct private void init() { try { String[] fieldsToMap = { "id", "about", "age_range", "birthday", "context", "cover", "currency", "devices", "education", "email", "favorite_athletes", "favorite_teams", "first_name", "gender", .. 더보기