2024. 1. 5. Update
pom.xml
: 2023. 07. 25일 Tomcat 9 호환settings.json
샘플종류 | 설명 | 저장 공간 | 값의 범위 (최소값~최대값) |
---|---|---|---|
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 |
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>