- 浏览: 40268 次
- 性别:
- 来自: 安徽
最新评论
文章列表
错误描述:
Caused by: org.apache.ibatis.binding.BindingException: Parameter '__frch_item_0' not found. Available parameters are [param, param_key_page, param1, param2]
解决:
<foreach collection="param.ids" index="_nums" item="item" separator=",">
#{param.id ...
金额字段带了CNY前缀,需要先去掉
public class AmountAdapter extends JsonDeserializer<BigDecimal>{
@Override
public BigDecimal deserialize(JsonParser p, DeserializationContext ctxt) throws IOException, JsonProcessingException {
String value = p.getText();
if(S ...
操作系统:centos 6.9
mysql版本:5.5.35
#root 用户密码初始设置为"w123456"
/usr/bin/mysqladmin -u root password 'w123456'
错误描述:
ERROR 1130 (HY000): Host '192.168.89.168' is not allowed to connect to this MySQL server
mysql -u root -pw123456
mysql>use mysql;
mysql>INSERT INTO `user` (`Host`, `User ...
#生成证书容器 文件abc.jks 别名china 密码长度2048 有效期3年 容器密码123456
keytool -genkey -alias china -keyalg RSA -keysize 2048 -keystore D:\abc.jks -storepass 123456 -validity 1095
#生成数字证书签名请求文件
keytool -certreq -keyalg RSA -alias fft -file certreq.csr -keystore D:\abc.jks
#根据证书DN 生成证书容器 (证书DN中有空格,记得加双引号,如下)
ke ...
给大家推荐一个美国众筹产品,减压魔方
程序员桌面必备减压神器
人在压力大情绪烦躁的时候,
若不将情绪适当的发泄出来,
会直接影响到工作学习的心情,
危害身心灵的健康。
点击进入详情页面
maven 编译时报错:
程序包com.sun.xml.internal.messaging.saaj.util不存在
需要添加
<compilerArguments>
<verbose />
<bootclasspath>${JAVA_HOME}/jre/lib/rt.jar</bootclasspath>
</compilerArguments>
备注完整:
<plugin>
<groupId>org.apache.maven.plugins& ...
jquery版本1.10.1
由于服务端返回的json 数据格式问题,前端js一直进入 error 事件。
正确的格式:
"{\"responseMsg\":\"success\"}"
备注:
$.ajax({
url:'/deep/sysmng/addPermRes',
async:true,
method:'POST',
contentType:'application/x-www-form-urlencoded; charset=UTF-8',
da ...
dom4j生成xml,如果标签内容为空,会简化便签,例如 <name />
但是会影响加签验签,需要生成完整的标签 <name></name>
SAXReader saxReader = new SAXReader();
Document document = saxReader.read(new ByteArrayInputStream(message.getBytes("UTF-8")));
Iterator orderIt = document.selectNodes("/CMBCPayRes/Msg ...
版本: 1.9.4
该版本不支持自定义表单名的查询,需要修改代码
1、修改方法_fnAjaxParameters 添加
if(oSettings.serverparam){
for(var p in oSettings.serverparam){
aoData.push( { "name": p, "value": oSettings.serverparam[p]} );
}
}
2、
var mygridtab = $('#sample_1').dataTable({
" ...
DataTables
version 1.9.4
添加属性
"bFilter":false,
"bLengthChange":false,
或者
修改方法 _fnAddOptionsHtml
注释掉下面两行
else if ( cOption == 'f' && oSettings.oFeatures.bFilter )
{
/* Filter */
//nTmp = _fnFeatureHtmlFilter( oSettings );
//iPushFeature = 1;
...
请参考:
http://www.cnblogs.com/andrewlee/p/3825653.html
通过改写类 VelocityView 的 getTemplate 方法
public Template getTemplate(String name, String encoding)
{
try
{
if (encoding == null)
{
return velocity.getTemplate(name,"UTF-8");
...
场景:
当我们修改数据库记录时,需要先查询出该条记录,然后set到form表单字段中,然后提交修改到后台。
this.fsf = new Ext.FormPanel({
reader:new Ext.data.JsonReader({
root: 'data',
fields:[
{name: 'id', mapping: 'id'},
{name: 'userName', mapping: 'userName'},
{name: 'Email', mapping: ...
当我们提交表单到action 由于类型转换错误,导致返回400 错误。
@Controller
public classMyFormController {
@InitBinder
public voidinitBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = newSimpleDateFormat("yyyy-MM-dd");
dateFormat.setLenient(false);
binder.registerCustomEditor(Date.class, newCustomD ...
ext版本 3.4
往TabPanel中加入新panel,设置新加入panel的布局,通过获取panel的container,设置layout来实现,经测试发现panel的container属性对象没有setlayout方法,而panel自身有该方法。难道panel本身就是一个container!
panel.ownerCt 获取的是tabPanel的container
panel.refOwner 也不是
大体实现代码:
var tabpanel = new Ext.TabPanel();
var newpanel = new Ext.Panel();
tabpanel.add(ne ...
spring jdbc 查询模板 内部类的使用
感觉这种写法让代码显得很清晰,将固定的操作步骤制定成模板方法,通过使用者,自己来实现继承类来决定操作过程。
org.springframework.jdbc.core.RowMapper
public interface RowMapper<T> {
T mapRow(ResultSet rs, int rowNum) throws SQLException;
}
org.springframework.jdbc.core.RowMapperResultSetExtractor
public cl ...