摘要:
1. #将传入的数据都当成一个字符串,会对自动传入的数据加一个双引号。 如:order by #user_id#,如果传入的值是111,那么解析成sql时的值为order by "111", 如果传入的值是id,则解析成的sql为order by "id". 2. $将传入的数据直接显示生成在sql 阅读全文
摘要:
List list=new ArrayList();1.如果是以上这样的话,lis不为null 但是size=0 这样集合对于之后的判断是没用的, 甚至是报异常,如list.get(0.......n)这样取值判断,就会报异常。2.如果先判断size 再判断null 如:if(list.size>0 阅读全文
摘要:
package com.thinkgem.jeesite.modules.yudengjipush.service; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayL 阅读全文
摘要:
/** * Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved. */ package com.thinkgem.jeesite.modules.sys 阅读全文
摘要:
package com.thinkgem.jeesite.modules.yudengji.web; import java.util.Date; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.Http 阅读全文
摘要:
@PathVariable和@RequestParam的区别请求路径上有个id的变量值,可以通过@PathVariable来获取 @RequestMapping(value = "/page/{id}", method = RequestMethod.GET) @RequestParam用来获得静... 阅读全文
摘要:
@InitBinder protected void initBinder(HttpServletRequest request, ServletRequestDataBinder binder) throws Exception { binder.registerCustomEditor(D... 阅读全文
摘要:
window.onload = function() { var changGuanId = $("input[name='id']").val(); if (changGuanId == undefined) { return; } $.ajax({ ... 阅读全文
摘要:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <%@ include file="/WEB-INF/views/include/taglib.jsp"%> <!DOCTYPE HTML PUBLIC "-// 阅读全文
摘要:
package com.thinkgem.jeesite.common.utils; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.NameValuePai 阅读全文