728x90
반응형
SMALL

2024/12/26 2

내프로젝트 디렉토리 구조 확인하는 방법

개발을하다가 gpt한테 내 프로젝트 구조를 알려주고싶은데? 할때가 있다.그럴 때는 tree 를 사용하면된다.사용방법은 내 프로젝트의 상위 디렉토리로 터미널로 이해서 tree하면 다보여준다.없으면 설치해야한다.brew install tree그런데 tree만하면 너무 다보여줘서 tmi 이다.그래서  아래처럼 입력하면 디렉토리의 두번째 까지만 보여준다. tree -L 2그런데 쓸데없이 안보고싶은 설정 파일같은게 하나씩있는데 이 디렉토리안에는 무수히많은 파일들이 있는 경우가 있다.그럴때는 아래처럼 입력해서 출력하는 걸 제외시키는 방법이있다 tree -L 2 -I "node_modules" 이제 gpt에게 내 디렉토리도 친절하게 알려줄수있게되었다. 끝.

기타 2024.12.26

Gradle 프로젝트 import시 에러발생 해결 (org.gradle.tooling.BuildException: Could not fetch model of type 'GradleBuild' using connection to Gradle distribution 'https://services.gradle.org/distributions/gradle-8.2.1-bin.zip'.)

Spring boot 프로젝트를 받아와서 import하는데 문제가 생겻다.뭐 버전이 안맞다고 나온다.그래서 프로젝트 root에서 gradle/wrapper/gradle-wrapper.properties의 distributionUrl의 설정값을 업데이트된 버전으로  변경해서 테스트해보니 어쩌다 성공했다.그런데 이렇게 해결해서는 안된다고 생각이들어서 더알아봣다.https://stackoverflow.com/questions/26281466/eclipse-gradle-plugin-could-not-fetch-model-of-type Eclipse Gradle Plugin 'could not fetch model of type'I am running Eclipse Luna on OS X with Gradle I..

Java 2024.12.26
728x90
반응형
LIST