- 浏览: 49998 次
- 性别:
- 来自: 北京
最新评论
文章列表
doThrow(new Exception()).when(edgecastService).sycData(sdf.parse("201405010000"), sdf.parse("201406102359"));
数据源中配置好事务,包括tx 和 aop的命名空间,<tx:annotation-driven />等
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springfra ...
spring RestTemplate 设置请求头,只能使用较低层的exchange方法
MultiValueMap<String, String> headers = new LinkedMultiValueMap<String, String>();
headers.add("Authorization", "xxxxxxxxxxxxxxxxxx");
HttpEntity<Object> requestEntity = new HttpEntity<Object> ...
试读《线上幽灵:世界头号黑客米特尼克自传》
- 博客分类:
- 读书
试读了一些章节,感觉本书跟我之前读过的几本人物自传相比更加容易融入情景.可能是以第一人称的视角还是文笔的缘故,宛如在讲故事,娓娓道来.
读外国人物自传很大一个问题是文化上的差异会增加理解书中的内容.本书这点就做的很好,尤其是米特尼克童年章节的描述,很亲切.同时让我回想起来"贫民窟中的百万富翁"中的体验,你生活中发生的一切都是有深意的,都是你未来人生的铺垫.主人公童年就显露出自己突破壁垒的天赋,以及观察改进,持续学习的能力,好的能力能让人成功,但是成为天才确实需要天赋.小尼克自制公交票的事情使人印象深刻.
米特尼克少年时管教所中研究相关 ...
mapper中配置
@Insert("insert into BANDWIDTH_PRELOAD(CHANNEL_ID,DAY,TIME_NUM,COUNT,FILESIZE) values(#{channel_id},to_date(#{day},'yyyy-mm-dd'),#{time_num},#{count},#{filesize})")
public void addData(PreData data);
具体实现类
private void batchInsert(List<PreData> dataList) thro ...
mail_host="xxx" #设置服务器
mail_postfix="xxx" #发件箱的后缀
mailto_list1=["xxxx"]
def send_mail(to_list,sub,content): #to_list:收件人;sub:主题;content:邮件内容
msg = MIMEText(content,_subtype='html',_charset='utf-8') #创建一个实例,这里设置为html格式邮件
msg['Subject'] = sub #设置主题
ms ...
MySQLdb中处理中文
- 博客分类:
- python
需要设置mysql
conn = MySQLdb.connect(host=mysql_host, user=mysql_user,passwd=mysql_passwd,db=mysql_database,charset="utf8")
@JsonSerialize(include = Inclusion.NON_NULL)
spring mvc rest 4种http动作
- 博客分类:
- java
@RequestMapping(value = "/channel_cfgs/channel/{channel}", method = RequestMethod.DELETE)
@ResponseStatus(HttpStatus.NO_CONTENT)
public void deleteChannelCFG(@PathVariable String channel) {
logger.info("deleteChannelCFG is call!");
System.out.pr ...
--idc
A8 = load '/billing-log/idc/20140212.delay/' USING TextLoader() as (line:chararray);
B8 = FOREACH A8 GENERATE FLATTEN(IdcParser(line)) as (time:long,channel:chararray,user:chararray,billing:chararray,node:chararray,area:chararray,isp:chararray,in_traffic:long,out_traffic:long,in_bandwidth:long, ...
maven打包 含src下的xml文件
- 博客分类:
- maven
maven打包默认只会把resources下的xml打进包中,而在src下的xml不会打包进去,在使用myBatis的适合就会出错.需要在pom文件中设置src下xml不过滤,build标签下增加
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</inc ...
python apscheduler
- 博客分类:
- python
# coding=utf-8
from apscheduler.scheduler import Scheduler
import time,datetime
def job_function():
print "Hello World"
if __name__ == '__main__':
sched = Scheduler()
sched.daemonic = False
sched.add_cron_job(job_function,day_of_week='*', hour='*', minute='0-59' ...
Object Object_Array[]=new Object[100];
String_Array=(String[])Object_Array;//错误的写法
String[] stringArray = Arrays.copyOf(objectArray, objectArray.length, String[].class);//正确的写法
public void insertBANDWIDTH_AREA_TEMP(final List<AreaTempBandwidth> bands) {
long executeStart = System.currentTimeMillis();
DefaultTransactionDefinition paramTransactionDefinition = new DefaultTransactionDefinition();
TransactionStatus status = transactionManager ...
java 按行直接解析gz包
- 博客分类:
- java
public List<Bandwidth> praseFile2Bandwidth(File file) {
List<Bandwidth> resultList = new ArrayList<Bandwidth>();
BufferedReader br = null;
try {
if (file.getName().endsWith(".gz")) {
br = new BufferedReader(new ...