본문 바로가기

전체 글210

JSON Object를 JAVA에서 사용하기. Gradle 설정 변경 방법. https://mvnrepository.com/artifact/org.json/jsonUsage가 많은 것 중 하나를 골라서, Version을 선택해서 들어간다. Gradle탭을 클릭하고 내용을 복사 한 후 build.gradle의 dependencies에 복사한 내용을 붙여준다.// https://mvnrepository.com/artifact/org.json/jsonimplementation group: 'org.json', name: 'json', version: '20160810'dependencies { // Spring Boot ... // Lombok ... ... ... // https://mvnrepository.com/artifact/org.json/json.. 2024. 8. 3.
./gradlew build 명령을 실행할 때, 테스트 실패 $ ./gradlew build> Task :test FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':test'. > There were failing tests. See the report at: file:///C:/Users/LG/Documents/MJU/%EA%B3%B5%EB%AA%A8%EC%A0%84/Github/JejuTravel-BE/build/reports/tests/test/index.html * Try: > Run with --scan to get full insights. BUILD FAILED in 20s 7 actionable tasks: 7 executed ./.. 2024. 8. 3.
Transcriptome analysis based on machine learning reveals a role for autoinflamma Materials and methodsDataset download and preprocessingOnly two eligible RNA-seq datasets (GSE133378 and GSE187429) in GEO. https://ftp.ncbi.nlm.nih.gov/geo/series/GSE133nnn/GSE133378/ Index of /geo/series/GSE133nnn/GSE133378ftp.ncbi.nlm.nih.govNCBI GEO (Gene Expression Omnibus) 데이터베이스는 유전자 발현 및 기타 기능 유전체 데이터의 공개 저장소입니다. 해당 링크에서 4개의 디렉토리는 각기 다른 형식과 목적으로 데이터를 제공합니다. 각 디렉토리의 차이점은 다음과 같습니다: 1. **ma.. 2024. 7. 2.
Java Software Solution Ch7_PP3 PP 7.3 Write a class called SalesTeam that represents a team of salespeople. Each salesperson on the team is represented by the SalesPerson class of PP 7.2. Each team has a name, and the constructor needs only to accept the name of the team. Use an ArrayList to store the team members. Provide a method called addSalesPerson that accepts a SalesPerson object. Provide a method called weeklyReport t.. 2024. 5. 1.
Java Software Solution Ch7_PP2 PP 7.2 Create a class called SalesPerson that represents a salesperson in an organization. The SalesPerson class should have the name, the phone number, and the assigned district of a salesperson. Each salesperson acquires a certain sale amount every day. Provide a constructor that sets all instance values based on parameter values. Overload the constructor such that each daily sale amount for a.. 2024. 5. 1.
Java Software Soution Ch7_PP8 PP 7.8 Write a Java interface called Lockable that includes the following methods: setKey, lock, unlock, and locked. The setKey, lock, and unlock methods take an integer parameter that represents the key. The setKey method establishes the key. The lock and unlock methods lock and unlock the object, but only if the key passed in is correct. The locked method returns a boolean that indicates wheth.. 2024. 5. 1.