* CustomJdbcDaoImpl在AOP中以通过SecurityPC这个断面进行了事务管理,无需通过这里的Service进行管理
* 该接口应该提供给普通用户,放在这里是否合适?
* */
public String changePassByUser()//用户修改自身的密码,需要输入旧密码
{
resultInfo = new OperResult();
Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
String name = authentication.getName();
IChangePassword iChangePassword = (IChangePassword)StorageService.ctx.getBean("jdbcUserService");//只能强制转为此接口,不知为何
// CustomJdbcDaoImpl customJdbcDaoImpl = (CustomJdbcDaoImpl)StorageService.ctx.getBean("jdbcUserService");//cast exception??
if(iChangePassword!=null)