`
qq123zhz
  • 浏览: 534398 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论
文章列表
tomcat 的 负载均衡 和session 复制 弄完了后检查 配置情况  在apache 的日志中发现了 出现了这个 警告   The attribute 'worker.controller.balanced_workers' is deprecated - please check the documentation 仔细核对后 才发现  在网上 抄来的 东西就是不行   balanced_workers  中的 balanced 写错了 多了一个 d 应该为 balance_workers 更正后重启apache 检查 log 发现一切正常。 拜托大家能先把测 ...
1. <result type="json"> <param name="excludeProperties"> userService </param> </result>   这样就不会将userService进行序列化了。 2.可以将action中的getUserService()方法去掉。 3.在action中的getUserService()前加@Json(serializable = false) 4.如果user对象是从hib ...

jquery post

var url = 'intergra_get.action'; var params = { 'oldPhone' : $('#oldPhone').val(), 'oldPhonePwd' : $('#oldPhonePwd').val(), }; jQuery.post(url, params, callbackFun, 'json');  
转载: The last packet successfully received from the server was 596,688 milliseconds ago. 后来查了一些资料,才发现遇到这个问题的人还真不少,大部分都是使用连接池方式时才会出现这个问题,短连接应该很难出现这个问题。这个问题的原因: MySQL服务器默认的“wait_timeout”是28800秒即8小时,意味着如果一个连接的空闲时间超过8个小时,MySQL将自动断开该连接,而连接池却认为该连接还是有效的(因为并未校验连接的有效性),当应用申请使用该连接时,就会导致上面的报错。 1.按照错误的提示,可 ...
/**日期和表达式的转化 * @param hour 小时 * @param minute 分钟 * @return */ private String makeDailyTrigger(String hour, String minute) { validateHour(Integer.parseInt(hour)); validateMinute(Integer.parseInt(minute)); return "0 " + minute + " " + ho ...
 很有用的quartz的学习资料。。。 本人最近也一值在项目是使用。。。。。 package com.chinaGPS.driverBook.service.impl; import java.text.ParseException; import java.util.ArrayList; import java.util.Collection; import java.util.List; import org.quartz.JobDetail; import org.quartz.Scheduler; import org.quartz.SchedulerExcep ...
package com.chinaGPS.driverBook.util; import java.io.ByteArrayOutputStream; /**Qp编码 * @author zhz * */ public class QpEncodeUtil { /** * quoted-printable编码 */ public static String qpEncodeing(String str) { return qpEncodeing(str, "UTF-8"); ...
<action name="intergra_*" class="intergraAction" method="{1}"> <result name="success">/website/integral{1}.jsp</result> <result name ="json" type="json"/> </action>  
  在jquery ajax 和struts2整合过程中,为了控制json返回,可以使用@json来制定那些字段可以返回。。 @JSON(serialize=true) public int getScore() {  return score; }  public void setScore(int score) {  this.score = score; } @JSON(serialize=false) public String getOldPhonePwd() {  return oldPhonePwd; }
解决方案: js\themes\advanced\default\img\content.css js\themes\advanced\default\highcontrast\content.css ....................................... 中的   body, td, pre { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;}
@Ognl@isNotEmpty() for String,Array,Collection,Map Test now, test empty string test. must use:<if test="userId != null && ''.equals(userId)"> and user_id = #{userId}</if>but, OGNL support Calling Static Methods.http://www.opensymphony.com/ognl/html/LanguageGuide/static ...
1.普通属性。 <s:textfield name="name" value="%{name}"/> 2.对象的属性。 <s:textfield name="name" value="%{user.name}"/> 3.遍历集合。 <s:iterator value="userList" id="user">       <s:property value="name"/> </s:iter ...
unix_timestamp(questiontime) between unix_timestamp(#{questiontime[0]}) and unix_timestamp( #{questiontime[1]}) 代表:  #{questiontime[0]})<questiontime<#{questiontime[1]},意思你懂得。。。
Caused by: org.quartz.impl.jdbcjobstore.LockException: Failure obtaining db row lock: Table 'driverbible.qrtz_locks' doesn't exist [See nested exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'driverbible.qrtz_locks' doesn't exist]  本人也也遇到类似错误。。。。 解决方案: <bean class=& ...
<if test="useroperator != null" > and t.useroperator like CONCAT(CONCAT('%', #{useroperator}),'%') </if>  
Global site tag (gtag.js) - Google Analytics