본문 바로가기

백엔드287

[spring error] No qualifying bean of type 빈으로 등록되지 않은 객체를 주입하려고 할 때 생기는 에러 bean으로 등록하지 않은 dto를 주입해서 사용하려고 했다 2021. 4. 21.
[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.
Column count of mysql.proc is wrong. Expected 21, found 20. The table is probably corrupted dbeaver 를 사용하는데 sql문을 작성하려고 하는데 다음과 같은 에러메시지가 발생했다. 해결방법으로는 dbeaver를 upgrade 해주니 해결되었다. ugrade 시 에러창이 나오면 무시 를 눌러주고 진행하면 된다. 2021. 4. 16.