main
이범준 9 months ago
parent ec753a758b
commit c8693e037f

@ -24,8 +24,8 @@ public class UserController extends cokr.xit.base.user.web.UserController<Manage
@Resource(name="userService")
private UserService userService;
@Resource(name="userBean2")
private cokr.xit.fims.base.service.bean.UserBean userBean2;
@Resource(name="fineIntegrationUserBean")
private cokr.xit.fims.base.service.bean.FineIntegrationUserBean fineIntegrationUserBean;
@Resource(name = "codeBean")
private CodeBean codeBean;
@ -137,7 +137,7 @@ public class UserController extends cokr.xit.base.user.web.UserController<Manage
ModelAndView mav = new ModelAndView("jsonView");
boolean result = false;
result = userBean2.confirmPassword(password);
result = fineIntegrationUserBean.confirmPassword(password);
mav.addObject("result", result);
return mav;
}

@ -4,8 +4,8 @@ import org.springframework.stereotype.Component;
import cokr.xit.foundation.User;
@Component("userBean2")
public class UserBean extends cokr.xit.base.user.service.bean.UserBean {
@Component("fineIntegrationUserBean")
public class FineIntegrationUserBean extends cokr.xit.base.user.service.bean.UserBean {
public boolean confirmPassword(String password) {
User user = this.getUser(currentUser().getAccount(), currentUser().getInstitute());
Loading…
Cancel
Save