- 浏览: 590974 次
- 性别:
- 来自: 深圳
最新评论
-
明明如月:
这个方法不错
解决Failed to execute goal org.apache.maven.plugins -
srhlwdamon:
可是我的为什么解决不了。。。。。。。。。!!
解决Failed to execute goal org.apache.maven.plugins -
di1984HIT:
写的不错。
Memcached 在window下部署和测试示例 -
只为学英语:
正解,十分感谢
解决Failed to execute goal org.apache.maven.plugins -
落雪封:
谢谢,解决了,少导入jar包了
Spring MVC 的json问题(406 Not Acceptable)
文章列表
自己写了一个分页
凑合着用
根据前2后3的设定:
当选择了第5页,生成5的前2页和5的后3页,则indexList为: 345678
当选择了第6页,则indexList为: 456789
package com.mtea.shop.model;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import com.mtea.shop.util.MathUtil;
/**
* 分页
* @author macrotea
* 201 ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset ...
OGNL表达式语言学习
- 博客分类:
- Struts2
访问值栈中的action的普通属性: username = <s:property value="username"/>
访问值栈中对象的普通属性(get set方法):
<s:property value="user.age"/> |
<s:property value="user['age']"/> |
<s:property value="user[\"age\"]"/> |
wrong: <%--<s:pro ...
了解Quartz体系结构
Quartz对任务调度的领域问题进行了高度的抽象,提出了调度器、任务和触发器这3个核心的概念,并在org.quartz通过接口和类对重要的这些核心概念进行描述:
●Job:是一个接口,只有一个方法void execute(JobExecutionContext
context),开发者实现该接口定义运行任务,JobExecutionContext类提供了调度上下文的各种信息。Job运行时的信息保存在
JobDataMap实例中;
●JobDetail:Quartz在每次执行Job时,都重新创建一个Job实例, ...
//给女友打电话是一个job
public class CallGirl implements Job{
@Override
public void execute(JobExecutionContext context) throws JobExecutionException {
System.out.println("正在打电话给女友...");
System.out.println("getTrigger().getName():"+context.getTrigger().getName());
}
} ...
在地址栏输入:
javascript:(function(){$("img").hide("show");})()
javascript:if(window.jQuery)alert("macrotea")
当请求:
http://localhost/login?user.username=猛男&user.password=123456abc
在Action中打印username,结果是乱码
网上各种解决方案,当你发现没有任何效果,可以如下去设置:
D:\Program Files\Apache Software Foundation\Tomcat 6.0\conf\server.xml
<Connector port="80" protocol="HTTP/1.1"
...
Subscriber:
spring
Subscription Code:
fLR8ZF-655333-66678657672229507
一.jndi分两种配置方式:
1.tomcat容器提供的jndi
2.应用上下文的jndi
对于第一种:
-->Tomcat 6.0\conf\context.xml 的<Context>元素添加
<Resource name="jdbc/quickstart" auth="Container" type="javax.sql.DataSource"
maxActive="50" maxIdle="30" maxWait="10000&quo ...
Spring结合c3p0的时候,出现如下异常:
com.mchange.v2.resourcepool.CannotAcquireResourceException: A
ResourcePool could not acquire a resource from its primary factory or
source.
结果发现问题出在这里:
<property name="jdbcUrl">
<value>jdbc:mysql://localhost:3306/db_temp?useUnicode= ...
acquireIncrement -> 5
acquireRetryAttempts -> 30
acquireRetryDelay -> 1000
autoCommitOnClose -> false
automaticTestTable -> null
breakAfterAcquireFailure -> true
checkoutTimeout -> 0
connectionCustomizerClassName -> null
connectionTesterClassName -> com.mcha ...
<!DOCTYPE Html>
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
<script type="text/javascript">
function selectAll(checkbox) {
...
1.在如下文件:
D:\Program Files\MySQL\MySQL Server 5.0\my.ini
找到如下项:
[mysqld]
然后添加:
log-slow-queries=/data/mysqldata/slowquery.log
long_query_time=2
2.重启服务,查看
mysql> show variables like 'long%';
+-----------------+-------+
| Variable_name | Value |
+-----------------+-------+
| long_query_ ...
1.struts.xml
<constant name="struts.i18n.encoding" value="utf-8" />
<package name="jsondefault" namespace="/json" extends="json-default">
<action name="loginByAjax" class="com.mtea.s2.action.LoginByAjax"> ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset ...