文章列表
StringUtils.isBlank() checks that each character of the string is a whitespace character (or that the string is empty or that it's null). This is totally different than just checking if the string is empty.
From the linked documentation:
Checks if a String is whitespace, empty ("") or ...
@responsebody表示该方法的返回结果直接写入HTTP response body中。也就是返回的数据格式。
一般在异步获取数据时使用,在使用@RequestMapping后,返回值通常解析为跳转路径,加上@responsebody后返回结果不会被解析为跳转路径,而是直接写入HTTP response body中。比如异步获取json搜索数据,加上@responsebody后,会直接返回json数据。
https://www.tutorialspoint.com/jdbc/jdbc-statements.htm
比如一个button放在一个form中,这个button的Default就是提交(submit),但如果你不想让他提交,就可以用e.preventDefault();
打个比方:
$(document).ready(function(){
$("button").click(function(e){
$("#show").fadeTo("fast",0);
e.preventDefault();
});
...