profile
개발공부

JAVA 자릿수 구하기

1의자리 : n%10 10의자리 : n%100 / 10 100의자리 : n%1000 / 100 1000의자리 : n%10000 / 1000 10000의자리 : n%10000

2022년 9월 15일
·
0개의 댓글
·

SQL where in 이하 조건값 기준 정렬

MySQL : order by FIELD(col, val1, val2, ...)PostgreSQL : order by array_position(ARRAYval1, val2, val3, ..., col::TYPE)

2022년 9월 6일
·
0개의 댓글
·

JAVA8 Int[]를 Integer[]로 변환

int\[] arr = new int\[]{}integer\[] arr2 = Arrays.stream(arr).boxed().toArray(Integer\[]::new);

2022년 8월 30일
·
0개의 댓글
·

이클립스 단축키 노트

필요한대로 추가할 예정

2022년 7월 31일
·
0개의 댓글
·

context:component-scan" is not bound

application.xml에서 component-scan통한 bean 등록시<context:component-scan base-package="패키지명"/>에서 'context:component-scan" is not bound'라는 에러 메시지가 뜰때는 상단에

2022년 7월 25일
·
0개의 댓글
·

ECLIPSE/STS -string 자동완성

eclipse 혹은 sts 자동완성 설정을 할 경우Window>Preferences>Java>Editor>Auto Activation에서 설정을 변경한다이때 상단 Insertion에서 Disable insertion triggers except 'Enter'을 체크하지

2022년 7월 24일
·
0개의 댓글
·
post-thumbnail

JAVA 좌우 지그재그 출력

1부터 n \* n까지 규칙에 맞춰 적었을 때의 결과를 n개의 줄에 걸쳐 출력합니다.각 줄에는 각 행에 해당하는 n개의 숫자를 공백을 사이에 두고 출력합니다.import java.util.Scanner;public class Main {}

2022년 6월 28일
·
0개의 댓글
·