게시글
질문&답변
2024.03.03
안녕하세요! 강사님 예외처리에 대한 질문이 있습니다.
답변 감사합니다 !!!!!!!!!!
- 0
- 2
- 234
질문&답변
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
- 492
질문&답변
2021.12.27
H2연결오류 입니다.
빠르고 친절한답변 매우 감사드립니다
- 0
- 3
- 317
질문&답변
2021.10.10
JSON 형식으로 파싱하는 이유?..
시간내주셔서 친절한 답변해주신 OMG님 진심으로 감사드립니다!
- 1
- 3
- 739
질문&답변
2021.09.09
v3,v4,v5 화이트라벨오류
힘드실텐데 시간낭비하게해서.. 죄송하고 감사합니다 ㅠ
- 0
- 7
- 560
질문&답변
2021.09.09
v3,v4,v5 화이트라벨오류
죄송합니다 해보았지만 오류가뭔지몰라서 구글드라이버주소올리겠습니다ㅜㅜ. https://drive.google.com/file/d/17lkrjhbYaYvOoTMCYbuvR9U7Wll9HSUg/view?usp=sharing 항상 친절한답변감사드립니다
- 0
- 7
- 560
질문&답변
2021.09.07
v3,v4,v5 화이트라벨오류
(사진) 계층구조입니다
- 0
- 7
- 560
질문&답변
2021.09.07
v3,v4,v5 화이트라벨오류
Execution failed for task ':ServletApplication.main()'. > Build cancelled while executing task ':ServletApplication.main()' * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.오류가 뜨고 (사진) 이렇게 설정하였습니다
- 0
- 7
- 560
질문&답변
2021.03.29
테스트시 오류입니다 ㅠ 질문드립니당
넵넵(사진)
- 0
- 3
- 215