본문 바로가기

STUDY/ECT

(24)
IntelliJ에서 여러 프로젝트 동시에 Run하기 멀티모듈로 진행하면서 계속 따로 실행했었는데, 알고보니 Compound를 이용해 한 번에 실행시킬 수 있다고 함.. Run -> Edit Configurations.. + 버튼 클릭 후 Compound 선택 +버튼으로 동시에 실행할 프로젝트 추가 끝! 정말 편하다
인텔리제이 콘솔 한글 깨짐 수정 스프링 부트 사용하면서 Post메서드에서 한글이 깨지는 줄 알았는데... 아니었음... 참고로 스프링 부트의 기본 인코딩은 UTF-8입니다..(당연ㅠ) 암튼 그러다가 인텔리제이 자체의 문제라는걸 알았다.... 맥에선 이런 설정이 필요없었는데... 파일 하단에 밑의 코드를 작성한 뒤 인텔리제이 재 시 작 해줘야 함 -Dfile.encoding=UTF-8
Mac 개발환경 설정 🍺 Homebrew macOS용 패키지 관리자인 homebrew 설치 Homebrew The Missing Package Manager for macOS (or Linux). brew.sh 터미널에 아래 스크립트를 복사, 붙여넣기 하여 설치! /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 설치 확인 brew doctor 🐱git brew install git 💻 iTerm2 brew로 설치 brew cask install iterm2 혹은 아래 링크에서 다운로드 Downloads - iTerm2 - Mac OS Terminal Replacement iTerm2 by George N..
Mac에서 Java 여러버전 설치 (homebrew) + jenv를 통해 관리하기 + java: invalid source release: 11 현재 Java 8이 설치되어있는데, 공부용으로 Java 11을 설치하려고 한다. 1. homebrew 업데이트 $ brew update 2. java 설치 특정 버전을 설치하려면 버전을 명시하고, 설치일로부터 가장 최신버전을 설치하려면 그냥 adoptopenjdk만 입력 # 최신버전 인스톨 $ brew install --cask adoptopenjdk # 특정버전 인스톨 $ brew install --cask adoptopenjdk11 3. 확인 4. jenv설치 Java버전을 관리해주는 패키지라고 함. 본인 터미널이 무엇인지 확인을 해보고, 맞는 설정 파일에 해당 설정을 추가한다. (MacOS는 요즘 zsh가 기본 이다) $ echo $SHELL 설정파일에 추가한다! ## bash일 경우 $ echo ..
STS설치 1. 다운로드 spring홈페이지 접속 Spring Tools 4 is the next generation of Spring tooling Largely rebuilt from scratch, Spring Tools 4 provides world-class support for developing Spring-based enterprise applications, whether you prefer Eclipse, Visual Studio Code, or Theia IDE. spring.io Project > DEVELOPMENT TOOLS > Spring Tools 4 본인 PC의 운영체제에 맞는 파일을 다운로드 2. 설치 다운로드된 .jar파일을 더블클릭 후 뭔가가 진행되고 나면... 저 RELEASE..
CocoaPods 설치 CocoaPods? CocoaPods manages library dependencies for your Xcode projects. xcode에서 사용하는 외부 라이브러리 관리를 도와줌. CocoaPods 사용법과 파일구조 코코아팟은 배포와 사용 두가지 측면으로 나누어집니다. 누군가 라이브러리를 배포했기 때문에 우리가 사용할 수 있습니다. 이번 글에서는 사용에 대해서 알아보겠습니다. medium.com 1. 코코아팟 공식 홈페이지 접속 CocoaPods.org CocoaPods is built with Ruby and is installable with the default Ruby available on macOS. We recommend you use the default ruby. Using th..
ATOM 설치하기 1. ATOM 다운로드 A hackable text editor for the 21st Century At GitHub, we’re building the text editor we’ve always wanted: hackable to the core, but approachable on the first day without ever touching a config file. We can’t wait to see what you build with it. atom.io 2. 설치 +) 설치 참고 영상 설치 - Atom Editor 설치 2015-05-19 00:34:22 opentutorials.org
Visual Studio Code 다운로드 및 한글설정 1. Visual Studio Code 사이트 접속 Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. code.visualstudio.com 2. 다운로드 다운로드한 파일은 압축을 풀어줍니다. 3. 설치 별도의 install과정은 없으며 exe파일을 실행시켜 바로 사용할 수 있습니다. +) ..