blob: 76de50b95a8a7fcba83afbacdf9a2675484913cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
package com.mesasoft.cn.modules.constant;
import com.zhazhapan.modules.constant.ValueConsts;
/**
* @author pantao
* @since 2018/1/19
*/
public class DefaultValues {
/**
* 未分类
*/
public static final String UNCATEGORIZED = "未分类";
/**
* 404页面路径
*/
public static final String NOT_FOUND_PAGE = "/404.html";
/**
* Controller包路径
*/
public static final String CONTROLLER_PACKAGE = "com.zhazhapan.efo.web.controller";
/**
* 配置文件路径
*/
public static final String SETTING_PATH = "/config.json";
/**
* 冒号
*/
public static final String COLON = ":";
/**
* 默认存储路径
*/
public static final String STORAGE_PATH = ValueConsts.USER_HOME + ValueConsts.SEPARATOR + "Desktop" + ValueConsts
.SEPARATOR;
/**
* 首页映射路径
*/
public static final String INDEX_PAGE = "/index";
/**
* 配置映射的路径
*/
public static final String CONFIG_PAGE = "/config";
/**
* 资源映射的路径
*/
public static final String ASSETS_PAGE = "/assets";
/**
* 登陆注册页面映射路径
*/
public static final String SIGNIN_PAGE = "/signin";
/**
* 管理员页面映射路径
*/
public static final String ADMIN_PAGE = "/admin";
/**
* int型数值3
*/
public static final int THREE_INT = 3;
/**
* int型数值2
*/
public static final int TWO_INT = 2;
/**
* code字符
*/
public static final String CODE_STRING = "code";
private DefaultValues() {}
}
|