首页>代码>Spring MVC+MyBatis+jstl整合开发java CMS内容发布系统easycms开源系统>/EasyCMS-master/src/com/easycms/common/Constants.java
package com.easycms.common;
/**
* web常量
*
* @author fuxin
*
*/
public abstract class Constants {
/**
* 路径分隔符
*/
public static final String SPT = "/";
/**
* 索引页
*/
public static final String INDEX = "index";
/**
* 默认模板
*/
public static final String DEFAULT = "default";
/**
* UTF-8编码
*/
public static final String UTF8 = "UTF-8";
/**
* 提示信息
*/
public static final String MESSAGE = "message";
/**
* cookie中的JSESSIONID名称
*/
public static final String JSESSION_COOKIE = "JSESSIONID";
/**
* url中的jsessionid名称
*/
public static final String JSESSION_URL = "jsessionid";
/**
* HTTP POST请求
*/
public static final String POST = "POST";
/**
* HTTP GET请求
*/
public static final String GET = "GET";
}

最近下载
最近浏览