Reference

:scream_cat: 참고자료 모음

:racehorse:개발도구 링크 모음


Spring STS 3 용 Legacy/MVC 프로젝트 Template

:cat:Spring MVC Project 표준 pom.xml : 2023. 07. 25일 Tomcat 9 호환


:cat:maven reposotory 설정용


:cat:vsCode settings.json 샘플


:ox:logback log message 설정


:hamster:SpringMVC 한글 Filter와 namespace 설정


:hamster:SpringMVC 한글 Filter, Security 설정


:dolphin:maven, spring, oracle mybatis 설정


:ox:mybatis mapper 설정


:blowfish:Java, Spring Project git hub 업로드 금지 파일 목록


:dromedary_camel:NodeJs, React Project git hub 업로드 금지 파일 목록


:blowfish: git hub markdown 이모지 모음


:blowfish:SVG 샘플


:baby_chick:마크다운 문서 작성법 정리


:moneybag:프로젝트 샘플데이터


:dog:자바 Primitive 자료형

종류 설명 저장 공간 값의 범위 (최소값~최대값)
boolean 논리값 1 bits true / false
byte 부호 있는 정수 8bits, 1Byte -128 ~ 127
char 유니코드 문자 16bits, 2Bytes \u0000 ~ \uFFFF
short 부호 있는 정수 16bits, 2Bytes -32768 ~ 32767
int 부호 있는 정수 32bits, 4Bytes -2147483648 ~ 2147483647
long 부호 있는 정수 64bits, 8Bytes -9223372036854775808 ~ 9223372036854775807
float IEEE 754 실수 32bits, 4Bytes 1.40239846E-45f ~ (표현 가능 양수 범위) 3.40282347E+38f
double IEEE 754 실수 64 bits, 8Bytes 4.94065645841246544E-324 ~ (표현 가능 양수 범위) 1.79769313486231570E+308

:cyclone:정규식 문법

:dog:ojdbc6 설치


:dog:ojdbc8 설치

<!-- https://mvnrepository.com/artifact/com.oracle.database.jdbc/ojdbc8 -->
<dependency>
    <groupId>com.oracle.database.jdbc</groupId>
    <artifactId>ojdbc8</artifactId>
    <version>23.2.0.0</version>
</dependency>