- 浏览: 534398 次
- 性别:
- 来自: 深圳
最新评论
-
gaolegao2008:
如果报 is_volum 列名找不到之类的,我是从新部署了一个 ...
spring quartz 定时器报错 -
gaolegao2008:
部署到linux上时,还有一种情况就是mysql数据库区分大小 ...
spring quartz 定时器报错 -
qq123zhz:
yahier 写道 对我有帮助,但我看的一个demo程序,却没 ...
spring quartz 定时器报错 -
qq123zhz:
这个要在eclipse的插件环境下运行的,你不懂eclipse ...
GEF 自动布局 -
qq123zhz:
这个很久了,不记得啥时候写的了
json转为Map
文章列表
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
- 博客分类:
- jquery ajax
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 ...
struts2标签中使用值栈中的数据
- 博客分类:
- java
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>