Constants.java
519 Bytes
package com.server.shiro.constants;
import org.springframework.beans.factory.annotation.Value;
/**
* Created by yinbinhome@163.com on 2018/2/23.
* description:
*/
public class Constants {
public static final String USER_PERMISSION = "application_user_permission_key";
public static final String SUCCESS_CODE = "1";
public static final String SUCCESS_MSG = "请求成功";
/**
* session中存放用户信息的key值
*/
public static final String SESSION_USER_INFO = "userInfo";
}