Spring定义了一下几种事务传播方式:PROPAGATION_REQUIRED
支持当前事务,如果当前没有事务,就新建一个事务。这是最常见的选择。PROPAGATION_SUPPORTS
支持当前事务,如果当前没有事务,就以非事务方式执行。PROPAGATION_MANDATORY 支持当前事务,...
分类:
编程语言 时间:
2014-05-26 11:28:27
阅读次数:
154
解决方案:1.在对应的模板中, 为每个POST的form添加一行代码:{% csrf_token
%}。 如下所示: {% csrf_token %} {{ form.as_table }} 2.在对应的views.py中, 使用
django.templa...
分类:
其他好文 时间:
2014-05-26 10:03:05
阅读次数:
276
Given an unsorted integer array, find the first
missing positive integer.For
example,Given[1,2,0]return3,and[3,4,-1,1]return2.Your algorithm should ru...
分类:
其他好文 时间:
2014-05-26 09:43:14
阅读次数:
220
报错:Access restriction: The method
decodeBuffer(String) from the type CharacterDecoder is not accessible due to
restriction on required libraryAccess r...
分类:
数据库 时间:
2014-05-26 07:30:24
阅读次数:
279
Several ports(8080,8009)required by Tomcat v6.0 Server at localhost are already in use.The server may already be running in another process, or a system process may be using the port, To start this server you will need to stop the other process or change t...
分类:
编程语言 时间:
2014-05-26 03:41:22
阅读次数:
364
PROPAGATION_REQUIRED PROPAGATION_REQUIRED
PROPAGATION_REQUIRED PROPAGATION_REQUIRED PROPAGATION_R...
分类:
编程语言 时间:
2014-05-26 02:26:01
阅读次数:
317
HttpUtility.HtmlEncode来预处理用户输入,这能阻止用户向视图中用链接注入js代码或html标记1、[Required]:非空验证2、[StringLength(**)]:设置字符的长度2.1、[StringLength(**,MinimumLength=*):设置字符长度Mini...
分类:
Web程序 时间:
2014-05-22 14:35:38
阅读次数:
340
此问题是在使用sencha app build命令后出现得
主要是 YUI Compressor压缩的时候,代码中出现了delete, interface之类的关键字导致的。
此时可以在WebStrom上看到js中出现关键字的单词颜色不太一样。此时改个名字就ok了...
分类:
移动开发 时间:
2014-05-22 09:17:30
阅读次数:
287
【题目】
Given an unsorted integer array, find the first missing positive integer.
For example,
Given [1,2,0] return 3,
and [3,4,-1,1] return 2.
Your algorithm should run in O(n) time and uses constant space.
【题意】
给定一个数组,找出第一个缺失的正数。时间复杂度O(n)
...
分类:
其他好文 时间:
2014-05-21 17:13:07
阅读次数:
219
出现此情况,应该是使用了gradle wrapper时候,创建工程时使用的gradle版本比当前使用的版本低得情况。此时log会提示 去修改 project_root/gradle/wrapper/gradle-wrapper.properties这个文件中
distributionUrl=http\://services.gradle.org/distributions/gradle-1.1...
分类:
其他好文 时间:
2014-05-20 14:01:16
阅读次数:
239