블로그
- [Spring Boot] JPA 어노테이션 정리 속성 name : 엔티티 이름을 지정 (default : class 이름) @Table 매핑 할 테이블 정보를 지정합니다. 규칙 지정 속성 strategy - GenerationType.AUTO : JPA가 자동으로 생성(default) - GenerationType.IDENTITY : DB가 생성 (mysql
- Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary. and manual loading of the driver class is generally unnecessary. ■ 내용 - MySQL 연동 시, 버전에 따라 Driver 값이 다르다고 한다. - com.mysql.jdbc.Driver (MySQL 8 미만) - com.mysql.cj.jdbc.Driver (MySQL 8.......