목록Server/Gradle & Maven (10)
써먹는 웹개발
[Gradle] 기존에 파일이 있으면 다운로드 되지 않을때 해결방법
build.gradle에 아래 내용 추가 1 2 3 repositories { mavenCentral() } cs 출처 : 회사 과장님
Server/Gradle & Maven
2021. 8. 17. 20:03
[Gradle] json 적용 실패 사례와 성공 사례 (+질문)
20211202 Question 1. json.toJSONString() 이 안되는 이유가 알고싶은데 아시는 분은 댓글 부탁드립니다. ex) JSONObject json = new JSONObject(exam); json.toJSONString(); // 에러발생 ※ gradle에는 다음 2줄 추가 : implementation 'org.json:json:20190722' implementation 'com.googlecode.json-simple:json-simple:1.1.1' 적용한 소스는 build.gradle > dependencies 하위로 동일합니다. 1. json 실패한 사례 compile group: 'org.json', name: 'json', version: '20180813' 2. ..
Server/Gradle & Maven
2021. 7. 23. 11:04