开发运维日常坑 总结 1-50

注意:



1、jstl 不能获取 ${xx.isXXX}的值

is=get

有异常




2、Parameter 'XXX' not found. Available parameters are [1, 0, param1, param2]


修改前的代码:


@Select("select * from fruitsell where f_id=#{f_id} and u_id=#{u_id}")

public Fruitsell finbyfruitsell(Long f_id,Long u_id);


修改后的代码:

@Select("select * from fruitsell where f_id=#{0} and u_id=#{1}")

public Fruitsell finbyfruitsell(Long f_id,Long u_id);

2018年3月更新=======


之前写的方法有好多问题,现在更新在更新一下 


@Select("select * from fruitsell where f_id=#{f_id} and u_id=#{u_id}")

public Fruitsell finbyfruitsell(@Param("f_id") Long f_id,@Param("f_id") Long u_id);

加一个@Param注解就可以了


3、jQuery获取选中单选按钮radio的值_jquery

所属机房:

input type="radio" class="inputgri" name="idcId" value="${idc.id}">${idc.idcName}



4、Ajax用法

$(function(){

  $(":radio").click(showThisVal);

});  

function showThisVal(){

$("#serverId").load("/system/server/findByIdcId.do",'idcId='+$(this).val());

}


5、response 乱码

PrintWriter 一定要在setCharacterEncoding 字符集后实现

//这句话的意思,是让浏览器用utf8来解析返回的数据  

response.setHeader("Content-type", "text/html;charset=UTF-8");  

//这句话的意思,是告诉servlet用UTF-8转码,而不是用默认的ISO8859  

response.setCharacterEncoding("UTF-8");  

String data = "中国";  

PrintWriter pw = response.getWriter();  

pw.write(data);  


3、JSTL通过数值key访问map的陷阱


https://blog.csdn.net/goldenfish1919/article/details/7332992






4、no mapping

1、web.xml 的classpath:spring.xml

其中 spring.xml 的路径是否正确

2、

5、

你可能感兴趣的:(开发运维日常坑 总结 1-50)