Skip to content

[Spring] 과제 요구사항 질문 #188

Answered by PFCJeong
DoohyunHwang97 asked this question in Q&A
Discussion options

You must be logged in to vote

두현님 안녕하세요~

저 에러는 말씀하신대로 return size가 복수개인데, 리턴 타입이 리스트가 아닐 때 발생하는데요.

artist 스키마는 name 칼럼에 unique키가 걸려있기 때문에 중복된 이름이 db에 저장될 수 없는 상태입니다.

resources/schema.sql

create table artists (
    id bigint auto_increment,
    name varchar(255),
    primary key (id),
    unique(name)
);

val artistEntity = artistRepository.findByName(albumInfo.artist)에서 해당 에러가 발생하는게 맞을까요?

Replies: 1 comment 8 replies

Comment options

You must be logged in to vote
8 replies
@DoohyunHwang97
Comment options

@DoohyunHwang97
Comment options

@PFCJeong
Comment options

@DoohyunHwang97
Comment options

@DoohyunHwang97
Comment options

Answer selected by davin111
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
Spring Spring 관련 내용
2 participants