- 浏览: 34231 次
- 来自: 上海
最新评论
文章列表
转载自 http://panyongzheng.iteye.com/blog/2222666 谢谢 保留收藏
关于spring java.lang.IllegalArgumentException: Name for argument type [java.lang.String] 的错误 http://blog.csdn.net/liuguanghaoputin/article/details/8695600 Name for argument type [java.lang.String] not available http://m.blog.csdn.net/blog/kouwoo ...
定义和用法
ajaxSetup() 方法为将来的 AJAX 请求设置默认值。
语法
$.ajaxSetup({name:value, name:value, ... })
该参数为带有一个或多个名称/值对的 AJAX 请求规定设置。
下面的表格中列出了可能的名称/值:
名称 值/描述
async 布尔值,表示请求是否异步处理。默认是 true。
beforeSend(xhr) 发送请求前运行的函数。
cache 布尔值,表示浏览器是否缓存被请求页面。默认是 true。
complete(xhr,status) 请求完成时运行的函数(在请求成功或失败之后均调用,即在 suc ...
下载路径:https://clipboardjs.com/
应用:
data-clipboard-target attribute 对应需要Copy的html. 可以携带页面的样式,如果保存word。 txt 则无。
样例如下:
<!-- Target -->
<input id="foo" value="https://github.com/zenorocha/clipboard.js.git">
<!-- Trigger -->
<button class="btn" d ...
/**
* 有10阶梯, 每次走1,2 or 3 阶,有多少种方式???
*/
public class Test
{
static final int s = 10;
static int len = 0, sum = 0;
static int step[] = new int[s];
static void compute(final int stair)
{
// get result
if (stair == 0)
{
pr ...
Alerts are a nice feature in Bootstrap to grab a user’s attention and deliver information. The different types of alerts are success, info, warning and danger, which are color coded accordingly. Alerts can include a close button for users to remove it from view once they have read it. In my project I ...
AngularJS中的controller是个函数,用来向视图的作用域($scope)添加额外的功能,我们用它来给作用域对象设置初始状态,并添加自定义行为。
当我们在创建新的控制器时,angularJS会帮我们生成并传递一个新的$scope对象给这个controller,在angularJS应用的中的任何一个部分,都有父级作用域的存在,顶级就是ng-app所在的层级,它的父级作用域就是$rootScope。
每个$scope的$root指向$rootScope, $cope.$parent指向父级作用域。
cotroller之间的通信本质上是当前的controller所在的$scope如何 ...
最近项目调试的时候在firebug中发现EasyUI的组件异步加载时总是加载两次url属性的问题,代码如下:
1 $(function(){
2 $('#comb').combobox({
3 url:'/area/list'
4 });
5 });
6
7 <input id="comb" class="easyui-combobox" type="text" name="comb" />
从以上的代码可以看到页面初始化的时候加载一次combobox组件的url,
html代码中也利 ...
Spring Security learning
1.
List<User> rsList = jdbcTemplate.queryForList(sql,User.class, username);
2
List<User> userList = jdbcTemplate.query(sql, new Object[]{username}, new BeanPropertyRowMapper<User>(User.class));
方法一: error:
org.springframework.jdbc.IncorrectResultSetColumnCountException: In ...
https://www.ibm.com/developerworks/cn/opensource/os-cn-spring-cache/
@WebServlet 此注解是Web Servlet 3.0 的新功能
所以Web.xml version 3.0以下 的此功能是不生效的。
demo 如下即可正常工作:
<?xml version="1.0" encoding="UTF-8"?>
<web-app
version="3.1"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSc ...
1. transient的作用及使用方法
我们都知道一个对象只要实现了Serilizable接口,这个对象就可以被序列化,java的这种序列化模式为开发者提供了很多便利,我们可以不必关系具体序列化的过程,只要这个类实现了Serilizable接口,这个类的所有属性和方法都会自动序列化。
然而在实际开发过程中,我们常常会遇到这样的问题,这个类的有些属性需要序列化,而其他属性不需要被序列化,打个比方,如果一个用户有一些敏感信息(如密码,银行卡号等),为了安全起见,不希望在网络操作(主要涉及到序列化操作,本地序列化缓存也适用)中被传输,这些信息对应的变量就可以加上trans ...
Date, Timestamp ;
转载自[url]
http://www.cnblogs.com/mjorcen/p/3780464.html[/url]
编写工具类
package cn.jorcen.commons.util;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import net.sf.json.JsonConfig;
import net.sf.json.processors.JsonValueProcessor;
...
Bean 配置如下:
<bean id="taskExecutor" class="org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor">
<property name="corePoolSize" value="5" />
<property name="maxPoolSize" value="10" />
<property ...
@Aspect
public class Aspect
{
@Before("execution(* com.test.*.*(..))")
public void logBefore(JoinPoint joinPoint)
{
logEnter.....
}
@After("execution(* com.test.*.*(..))")
public void logAfter(JoinPoint joinPoint)
{
log ...