-
正向代理和反向代理的区别
2016-02-17 14:56代理 是说 我知道要通过访问的 url 去请求另一个目标资源
反向代理 是我访问一个 url 但 url 背着我去别的地方获取资源 反馈给我 -
怎么把树形结构数据汇总到一级节点?
2016-01-14 15:24问题已经解决 不知道方法算好还是坏
先找到叶子节点 然后递归向上 并将节点数组存储到 list 中
如果遇到已处理过的节点 则 continue -
算法练习:求最大值和最小值
2015-11-23 10:47var foo = {
max: null,
min: null,
timer: null,
mainTimer: null,
getMax: function() {
return this.max;
},
getMin: function() {
return this.min;
},
ctor: function(data) {
this.max = data;
this.min = data;
},
generate: function() {
return parseInt(Math.random() * 100);
},
start: function() {
//console.log('start');
var tmp = foo.generate();
this.max || this.ctor(tmp);
this.max = tmp > this.max ? tmp : this.max;
this.min = tmp < this.min ? tmp : this.min;
//console.log(this.getMax());
//console.log(this.getMin());
this.timer = setTimeout(function() {
foo.start()
}, 1000);
},
run: function(vTime) {
if (!this.timer) {
foo.start();
} else {
console.log('max:' + foo.getMax());
console.log('min:' + foo.getMin());
}foo.ctor(foo.generate()); var time = vTime || 10000; this.mainTimer = setTimeout(function() { foo.run(time); }, time); }, stop: function() { window.clearTimeout(this.timer); window.clearTimeout(this.mainTimer); }
}
//foo.run(1000);
foo.run(); -
关于Spring mvc 每次请求都要从HttpServletRequest中获取一个参数
2015-08-28 16:17尝试在 filter 中 定义 ThreadLocal 存取参数 不知道会不会在并发时出现问题 等我的试验结果吧
-
关于Spring mvc 每次请求都要从HttpServletRequest中获取一个参数
2015-08-27 09:38重新描述一下
我的方法都要根据一个参数作为 where 条件 这个参数在用户登录的时候放到 session 中
我现在的做法是 在每一个方法 取一次这个参数 tenantId
@RequestMapping(value = "/add", method = RequestMethod.POST)
public String employeeAdd(Employee entity, HttpServletRequest request) {
entity.setTenantId(request.getSession().getAttribute("tenantId"));
if (employeeService.insert(entity)) {
return SUCCESS;
} else {
return ERROR;
}
}
有没有办法能抽离这个从 session 中获取参数的方法?