摘要:
var DateUtil = function (){ this.timeStamp2String = function(value){ var datetime = new Date(); datetime.setTime(value); var year = datetime.getFullYear(); va... 阅读全文
摘要:
1、 c3p0.jdbcUrl=jdbc\:mysql\://127.0.0.1\:3306/test?useUnicode\=true&characterEncoding\=UTF-8&allowMultiQueries\=true 必须写 allowMultiQueries=true 2、 <f 阅读全文
摘要:
1、spring.xml中加入(多个properties 用逗号隔开) <context:property-placeholder location="classpath:jdbc.properties,classpath:config.properties" /> 2、spring-mvc.xml 阅读全文
摘要:
static ResourceBundle PropertiesUtil = ResourceBundle.getBundle("config"); public static String express_host = PropertiesUtil.getString("express_host" 阅读全文
摘要:
/** * session超时跳转登陆页面 * @author zhangdong * 2017年10月24日 */ @Aspect @Component public class SessionTimeoutAspect { private static Logger logger = Logger.getLogger(SessionTimeoutAspect.class); public... 阅读全文
摘要:
1、jsp页面 2、controller 阅读全文
摘要:
String.format(“%n就哈哈哈哈哈哈”, contentArgs); 阅读全文
摘要:
所有数据存进resultList中 Collections.sort(resultList, new Comparator<HashMap<String, Object>>() { @Override public int compare(HashMap<String, Object> o1, Ha 阅读全文
摘要:
String object = JSON.toJSONString(obj); obj必须序列化 JSONObject jso=JSONObject.parseObject(object); //JSONObject jso = JSON.parseObject(object); JSONArray 阅读全文
摘要:
1.引入css、js <link rel="stylesheet" href=" ${pageContext.request.contextPath}/dist/dropload.css"> <script src="${pageContext.request.contextPath}/dist/d 阅读全文