728x90
$ sudo nano /boot/config.txt
Add "arm_64bit=0" to the end of the file
$ sudo reboot
728x90
$ sudo nano /boot/config.txt
Add "arm_64bit=0" to the end of the file
$ sudo reboot
http {
...
server_names_hash_bucket_size 64;
server_names_hash_max_size 8192;
...
}
[VSCODE] remote ssh - raspberry Connect Error (0) | 2023.06.15 |
---|---|
[TIL#5] JPA... (0) | 2023.05.25 |
org.springframework.web.util.NestedServletException: Handler dispatch failed; nested exception is java.lang.NoSuchMethodError (0) | 2023.05.25 |
[Error] Flutter - cmdline-tools component is missing (0) | 2023.03.29 |
aarch64 configure: error: cannot guess build type; you must specify one (0) | 2021.08.03 |
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.1.214</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>5.6.15.Final</version>
</dependency>
- persistence.xml
```xml
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.2"
xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/">
<!-- EntityManagerFactory 생성 시 unit name과 일치해야 합니다 -->
<persistence-unit name="com.hiio">
<properties>
<!-- 필수 속성 -->
<!-- DB Driver -->
<property name="javax.persistence.jdbc.driver" value="org.h2.Driver"/>
<!-- DB user info -->
<property name="javax.persistence.jdbc.user" value="hiio"/>
<property name="javax.persistence.jdbc.password" value="hiio"/>
<!-- DB url -->
<property name="javax.persistence.jdbc.url" value="jdbc:h2:file:F:/data/h2/prac"/>
<!-- Dialect -->
<property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/>
<!-- 옵션 -->
<!-- SQL show -->
<property name="hibernate.show_sql" value="true"/>
<!-- SQL 정렬 -->
<property name="hibernate.format_sql" value="true"/>
<!-- SQL에 관한 주석 처리 -->
<property name="hibernate.use_sql_comments" value="true"/>
<!-- application 실행 시 ddl 전략 -->
<property name="hibernate.hbm2ddl.auto" value="update"/>
</properties>
</persistence-unit>
</persistence>
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.26</version>
<scope>provided</scope>
</dependency>
maven dependencies lib 수정
버전 여러개일경우 체크다
cmdline-tools component is missing
android studio > sdkmanager > android sdk > sdk tools > android sdk command-line tools install apply