自定义拦截器 /** * UserSecurityInterceptor * Created with IntelliJ IDEA. * Author: yangyongkang * Date: 2018/8/22 * Time: 14:20 */ @Component public class U ...
分类:
编程语言 时间:
2020-07-09 00:53:49
阅读次数:
153
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # # Date : xxxx-xx-xx # # Author : Created by zhouwanchun. # # Wechat : loveoracle11g # # Function: T ...
分类:
数据库 时间:
2020-07-08 23:25:48
阅读次数:
106
并发编程中的三个问题 可见性 概念:可见性(Visibility)指一个线程对共享变量进行修改,另一个立即得到修改后的最新值; package juc.synchronized_test; ? import java.util.concurrent.TimeUnit; ? /** * @author ...
分类:
其他好文 时间:
2020-07-08 23:04:57
阅读次数:
77
本文章来源一个大哥,美美的后台下载不用,非得搞前台下载,最后这件事情就弄到了我的身上。 一. 本方法是Ajax调用的type是下载文件不同,data是下载路径(目前支持IE与谷歌别的浏览器没有试过) //服务器地址 data= context.Request.Url.Scheme + "://" + ...
分类:
其他好文 时间:
2020-07-08 20:03:11
阅读次数:
81
Hello and Welcome to the first part of an exciting series of blog posts where you will learn how to build an end-to-end full stack polling app similar ...
分类:
移动开发 时间:
2020-07-08 19:54:59
阅读次数:
69
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # # Date : xxxx-xx-xx # # Author : Created by zhouwanchun. # # Wechat : loveoracle11g # # Function: T ...
分类:
编程语言 时间:
2020-07-08 15:05:09
阅读次数:
77
#!/user/bin/python3# -*- coding: utf-8 -*-# @Time : 2020/7/7 15:32# @Author :Test_zhangping# @Email :981874735@qq.com# @File :api_requests.pyimport re ...
#!/user/bin/python3# -*- coding: utf-8 -*-# @Time : 2020/7/7 15:32# @Author :Test_zhangping# @Email :981874735@qq.com# @File :api_data.py"""首先确认用例需要修改 ...
__init__、__new__、__call__方法的执行顺序 __new__方法 __new__:当类实例化对象时优先执行,执行要比__init__早,产生了一个空的对象,什么都没有 __init__方法 __init__:当类实例化对象时会执行,与__new__方法的区别就是__init__类 ...
分类:
其他好文 时间:
2020-07-07 17:21:50
阅读次数:
74
我们在做A/B试验评估的时候需要借助p_value,这篇文章记录如何利用python计算两组数据的显著性。 一、代码 # TTest.py # -*- coding: utf-8 -*- ''' # Created on 2020-05-20 20:36 # TTest.py # @author: ...
分类:
编程语言 时间:
2020-07-07 13:04:33
阅读次数:
176