일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 11월순위
- analytics4
- pat발급
- ANTIFRAGILE
- 르세라핌
- git branch 삭제
- 오블완
- docker build
- Python
- DBMS
- 도커이미지
- gtihub
- 자바
- 컬렉션프레임워크
- codeium
- docker
- macvlan
- docker push
- 데이터내보내기
- db종류
- 명령어
- git pat
- spring
- 티스토리챌린지
- 애널리틱스4
- JPQL
- IntelliJ
- java
- JPA
- Today
- Total
목록전체 글 (296)
hanker
- 방화벽 설정 정보를 확인해보자$ sudo iptables -nL명령어 입력 후 ACCEPT된 포트를 살펴보면 사용자가 열어놓은 포트 리스트를 확인할 수 있다. - 특정 포트 외부에서 접속할 수 있도록 열기(외부에서 접속할 수 있도록 포트 OPEN) -. TCP PORT $ sudo iptables -I INPUT 1 -p tcp --dport 1234 -j ACCEPT -. UDP PORT $ sudo iptables -I INPUT 1 -p udp --dport 1234 -j ACCEPT-I : 새로운 규칙 추가-p : 패킷의 프로토콜 명시-j : 규칙에 해당하는 패킷을 어떻게 처리할지를 정한다. 1234번 포트를 열고 확인해보면
Spring boot를 실행 시 SQL문을 실행하는 법에 대해 알아보자 우선 Spring boot 실행 시 MEMBERS 테이블을 만들려고 한다. - 실행하려는 SQL문 - application.properties에 설정을 한다. (H2 사용) ## H2 Database 사용 설정 spring.h2.console.enabled=true spring.h2.console.path=/h2-console spring.datasource.driver-class-name=org.h2.Driver spring.datasource.url=jdbc:h2:~/test spring.datasource.username=sa spring.datasource.password= # Spring boot 시작 시 sql 문 실행 s..
import java.io.*; public class Main { private static final String zero = " "; private static final String s = "*"; public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); int n = Integer.parseInt(bf.readLine()); for(int i = 0 ; i < n ; i++){ fo..
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 befNum = 1, aftNum = 1; if(n == 1 || n == 2){ tmp = 1; } else { for(int i = 3 ; i
MainActivity외에 onClick 이벤트를 처리 할 Activity를 생성하여 실행 시켰더니 java.lang.IllegalStateException: Could not execute method for android:onClick 오류가 발생했다. 이유 : AndroidManifest.xml에 Activity 지정이 안되어서 나는 오류였다. 추가 후 오류 없음
$ timedatectl 명령어 입력 시 현재 설정된 Time zone을 확인할 수 있다. UTC로 설정 되어, 파일 생성일 등 확인이 불편함으로 한국 시간대로 변경하자 $ sudo timedatectl set-timezone Asia/Seoul 명령어를 입력하면 한국 시간대로 변경된다.
beforeDate - 이전 날짜 nowDate - 현재 날짜 public void monthValue(LocalDateTime beforeDate, LocalDateTime nowDate) { int monthA = beforeDate.getYear() * 12 + beforeDate.getMonthValue(); int monthB = nowDate.getYear() * 12 + nowDate.getMonthValue(); return monthB - monthA; }
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int val = 0; int tmp = n; if(n == 0){ System.out.println(1); } else { for(int i = 1 ; i
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); for(int i = 0 ; i < n ; i++){ int x1 = sc.nextInt(); int y1 = sc.nextInt(); int r1 = sc.nextInt(); int x2 = sc.nextInt(); int y2 = sc.nextInt(); int r2 = sc.nextInt(); int v = (int)(Math.pow(x2 - x1, 2) + Math.pow(y2 - y1, 2)); double plusR = Math.pow(..
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); double euclid = Math.PI * (Math.pow(n, 2)); double taxicap = 2 * (Math.pow(n, 2)); System.out.println(String.format("%.6f", euclid)); System.out.println(String.format("%.6f", taxicap)); } }