Package com.ketayao.ketacustom.entity.main

Examples of com.ketayao.ketacustom.entity.main.User


     
      // 替换登录用户的属性值
      if (value.startsWith("user.")) {
        value = value.substring(5);
       
        User user = SecurityUtils.getLoginUser();
        return PropertyUtils.getProperty(user, value).toString();
      }
     
      return request.getParameter(value);
    }
View Full Code Here

TOP

Related Classes of com.ketayao.ketacustom.entity.main.User

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.