소개
게시글
질문&답변
2024.03.03
안녕하세요! 강사님 예외처리에 대한 질문이 있습니다.
답변 감사합니다 !!!!!!!!!!
- 0
- 2
- 237
질문&답변
2023.05.18
안녕하세요 강사님! 질문있습니다.!
public enum Role { ROLE_CUSTOMER, ROLE_SELLER; }// public class Customer extends BaseTimeEntity { @Enumerated(EnumType.STRING) private Role role; } @Override public Collection getAuthorities() { Collection authorities = new ArrayList(); authorities.add(new GrantedAuthority() { @Override public String getAuthority() { return customer.getRole().toString(); } }); return authorities; } @Override public void signUpCustomer(CustomerSignUpDto customerSignUpDto) throws Exception { Customer customer = customerSignUpDto.toEntity(); customer.encodePassword(passwordEncoder); customer.addCustomerAuthority(); if (customerRepository.findByUsername(customer.getUsername()).isPresent()) { throw new Exception("이미 존재하는 아이디입니다."); } customerRepository.save(customer); } public void addSellerAuthority(){ this.role = Role.ROLE_SELLER; }답변 매우감사드립니다!!혹시 이 코드도 제대로 동작하는데 문제없을까요?..
- 0
- 2
- 506
질문&답변
2021.12.27
H2연결오류 입니다.
빠르고 친절한답변 매우 감사드립니다
- 0
- 3
- 319
질문&답변
2021.10.10
JSON 형식으로 파싱하는 이유?..
시간내주셔서 친절한 답변해주신 OMG님 진심으로 감사드립니다!
- 1
- 3
- 747
질문&답변
2021.09.09
v3,v4,v5 화이트라벨오류
힘드실텐데 시간낭비하게해서.. 죄송하고 감사합니다 ㅠ
- 0
- 7
- 563