Skip to content

callor/Reference

Repository files navigation

🙀 참고자료 모음

🐎개발도구 링크 모음


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

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


🐱maven reposotory 설정용


🐱vsCode settings.json 샘플


🐂logback log message 설정


🐹SpringMVC 한글 Filter와 namespace 설정


🐹SpringMVC 한글 Filter, Security 설정


🐬maven, spring, oracle mybatis 설정


🐂mybatis mapper 설정


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


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


🐡 git hub markdown 이모지 모음


🐡SVG 샘플


🐤마크다운 문서 작성법 정리



🐶자바 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

🌀정규식 문법

  • 오라클 ojdbc6.jar 로컬 maven reposotory 설치
  • 2021-07-21 이후 maven 에서 objbc8 등 공식 JDBC 다운로드 설치 가능해짐

  • 2021-07-21 이후 maven ojdbc8 dependency 공식 다운로드 가능 :
<!-- 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>