Java/정리

jar파일 만들기

낭구리 2021. 9. 14. 16:07

 

메이븐 저장소

https://mvnrepository.com/

​개발자들이 기능을 모아둔곳

코드들을 압축해놓은것

https://jsonplaceholder.typicode.com/ 서버구축

 

JSONPlaceholder - Free Fake REST API

{JSON} Placeholder Free fake API for testing and prototyping. Powered by JSON Server + LowDB As of Dec 2020, serving ~1.8 billion requests each month.

jsonplaceholder.typicode.com

 

JSONPlaceholder - Free Fake REST API

{JSON} Placeholder Free fake API for testing and prototyping. Powered by JSON Server + LowDB As of Dec 2020, serving ~1.8 billion requests each month . Sponsors JSONPlaceholder is supported by the following companies and Sponsors on GitHub, check them out  Retool Utilities — Need to generate an API...

jsonplaceholder.typicode.com

https://mvnrepository.com/artifact/com.google.code.gson/gson/2.8.7

https://mvnrepository.com/artifact/com.google.code.gson/gson/2.8.7

 

https://jsonformatter.curiousconcept.com/

 

JSON Formatter & Validator

Format and validate JSON data so that it can easily be read by human beings.

jsonformatter.curiousconcept.com

https://jsonplaceholder.typicode.com/todos/1 todos의 1번째 아이디를 검색하는방법

jar 파일 생성하기

 

1. jar로 만들고 싶은 파일에서 우클릭 한다. -> Export.... 을 클릭한다.

2. Java -> JAR file 클릭 후 Next 버튼 클릭

3. 내보내고 싶은 파일을 선택 후 jar 파일을 저장 할 위치와 이름을 정한다.

 

 

'Java > 정리' 카테고리의 다른 글

자료구조 구현 클래스들 - 컬레션 프레임워크  (0) 2021.09.14
자료 구조란  (0) 2021.09.14
문자단위 입출력 스트림  (0) 2021.09.13
표준 입출력 스트림  (0) 2021.09.13
자바의 입출력을 위한 I/O 스트림  (0) 2021.09.13