fix(signage): UIWS UserController/UserService 빈 이름 충돌 해소 (uiwsSystem* 지정) — 부팅 크래시 수정
This commit is contained in:
parent
314bbd500a
commit
0dbcf198bd
@ -14,7 +14,7 @@ import org.springframework.web.bind.annotation.*;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/** 2.6 사용자(users) — 목록/검색/중복ID확인/CRUD/다중삭제/비번초기화/잠금해제/승인. base: /api/system/users */
|
/** 2.6 사용자(users) — 목록/검색/중복ID확인/CRUD/다중삭제/비번초기화/잠금해제/승인. base: /api/system/users */
|
||||||
@RestController
|
@RestController("uiwsSystemUserController")
|
||||||
@RequestMapping("/api/system/users")
|
@RequestMapping("/api/system/users")
|
||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
public class UserController {
|
public class UserController {
|
||||||
|
|||||||
@ -30,7 +30,7 @@ import java.util.stream.Collectors;
|
|||||||
* 관리자 등록 사용자는 approval_yn='Y'. 비밀번호는 BCrypt — 응답·로그(코드 외)에 절대 노출 금지.
|
* 관리자 등록 사용자는 approval_yn='Y'. 비밀번호는 BCrypt — 응답·로그(코드 외)에 절대 노출 금지.
|
||||||
*/
|
*/
|
||||||
@Slf4j
|
@Slf4j
|
||||||
@Service
|
@Service("uiwsSystemUserService")
|
||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
public class UserService {
|
public class UserService {
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user