본문 바로가기

백엔드/Spring131

[spring error] Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. 추가하기 # DataSource spring.datasource.url=jdbc:mysql://localhost:3306/[DB스키마명]?autoReconnect=true spring.datasource.username=[DB접속Id] spring.datasource.password=[DB접속Password] spring.datasource.driver-class-name=com.mysql.jdbc.Driver 2021. 4. 21.
[spring boot] Servlet.service() for servlet [dispatcherServlet] threw exception 쿼리에 null 이 들어가서 생기는 문제 2021. 4. 19.
hibernate_sequence' doesn't exist 다음 부분에서 @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private int id; @GeneratedValue(strategy = GenerationType.IDENTITY) 이부분을 추가해주면 된다. @GeneratedValue 는 주키의 값을 위한 자동 생성 전략을 명시하는데 사용한다. strategy가 지원하는 것으로는 1. AUTO : 특정 DB에 맞게 자동 선택 2. IDENTITY : DB의 identity 컬럼을 이용 3. SEQUENCE : DB의 시퀀스 컬럼을 이용 4. TABLE : 유일성이 보장된 데이터베이스 테이블을 이용 IDENTITY의 경우 예외가 발생하고, TABLE의 경우 내부적으로 사용하는 것으로 추정할 수 있는 .. 2021. 4. 19.
ncorrect table definition; there can be only one auto column and it must be defined as a key primary key 속성을 부여하지 않아 생기는 오류 ncorrect table definition; there can be only one auto column and it must be defined as a key sql 해결 ALTER TABLE openapi_demo.openapi_url MODIFY COLUMN id int(11) auto_increment primary key NOT NULL; sql 오류 ALTER TABLE openapi_demo.openapi_url MODIFY COLUMN id int(11) auto_increment primary key NOT NULL; 2021. 4. 19.
[SpringBoot] IntelliJ IDEA :: Cannot resolve class or package 'mysql' gradle에 maven을 추가하고 application.properties 에 db연결 명령어를 쳤는데 Cannot resolve class or package 'mysql' 로 빌드가 되지 않았다. 이러한 경우에는 오른쪽 탭에서 gradle을 선택 후 리프레시를 해주면 된다 2021. 4. 15.
spring boot db 연결 mariadb, mybatis gradle // https://mvnrepository.com/artifact/org.mybatis/mybatis implementation group: 'org.mybatis', name: 'mybatis', version: '3.4.6' // https://mvnrepository.com/artifact/org.mariadb.jdbc/mariadb-java-client implementation group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '2.7.1' driver 및 연결 정보 설정 추가 spring.datasource.driverClassName=org.mariadb.jdbc.Driver spr.. 2021. 4. 15.