일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 오블완
- pat발급
- 데이터내보내기
- 명령어
- 컬렉션프레임워크
- docker push
- JPQL
- db종류
- 도커이미지
- 11월순위
- JPA
- spring
- 자바
- ANTIFRAGILE
- gtihub
- Python
- java
- docker
- codeium
- analytics4
- git branch 삭제
- IntelliJ
- docker build
- DBMS
- macvlan
- 르세라핌
- 티스토리챌린지
- 애널리틱스4
- git pat
- Today
- Total
목록전체 글 (294)
hanker
spring security 적용 후 실행을 했더니 오류가 발생했다. Description: Method springSecurityFilterChain in org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration required a bean of type 'org.springframework.security.oauth2.client.registration.ClientRegistrationRepository' Action: Consider defining a bean of type 'org.springframework.security.oauth2.client.registration.ClientRegis..
각각 다른 해결방법이 있겠지만 본인은 cmd창 관리자모드로 실행해서 해결했다.
com.jcraft.jsch.JSchException: UnknownHostKey: - RSA key fingerprint is - 에러가 뜨면 밑 코드 3줄을 추가하면 해결할 수 있다. java.util.Properties config = new java.util.Properties(); config.put("StrictHostKeyChecking", "no"); session.setConfig(config);
hkVirus - 코로나19 최근 7일간 확진자 수 ( 전국 / 시도 ) 공공데이터 포털에서 코로나19 API를 이용해서 간단하게 전국, 지역별 그래프를 만들어 봤다. 최근 7일간 전국 확진자 수, 지역별 확진자 수를 SBAdmin2 템플릿 ,highChart 그래프를 이용해 구현해 봤다. 전국, 지역 버튼을 눌러 확인 가능하다.
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int tmp = 0; int cnt = 1; for(int i = 0 ; i < N ; i++) { tmp += i; if(N = (6 * (tmp - i)) + 2) { cnt = i + 1; break; } } System.out.println(cnt); } }
import java.util.Scanner; public class Main { public static void main(String ar[]) throws Exception{ Scanner sc = new Scanner(System.in); // 고정비용 int A = sc.nextInt(); // 가변비용 (한 개당 비용) int B = sc.nextInt(); // 판매 가 int C = sc.nextInt(); int cnt = 1; // A + (B * ?) = C) { cnt = -1; } else { while(true) { if(A < (C - B) * cnt) { break; } else { cnt++; } } } System...
pom.xml에 org.json 을 추가한다. org.json json 20180130 json 추가가 완료되면 테스트 코드를 작성한다. import java.io.File; import java.io.FileInputStream; import java.io.InputStream; import org.apache.commons.io.IOUtils; import org.json.JSONObject; import org.json.XML; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.SerializationFeature; public class xmltoJson { public static vo..
org.apache.tomcat.embed tomcat-embed-jasper provided javax.servlet jstl jsp 사용을 위한 pom.xml에 추가 설정 +add application.properties에 다음코드 추가 spring.mvc.view.prefix=/WEB-INF/jsp/ spring.mvc.view.suffix=.jsp 위 jstl, jasper를 추가하지 않으면 404 Error가 뜬다.
@Configuration public class WebConfig { @Bean public MappingJackson2JsonView jsonView() { return new MappingJackson2JsonView(); } } @Configuration 설정파일 내에 JsonView() 작성하면 끝!
pom.xml mysql mysql-connector-java # MySQL8 설정spring.datasource.url=jdbc:mysql://localhost:3306/스키마명?useSSL=false&characterEncoding=UTF-8&serverTimezone=UTCspring.datasource.username=아이디spring.datasource.password=비밀번호spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver# 콘솔에 SQL 출력 여부spring.jpa.show-sql=truespring.jpa.database-platform=org.hibernate...