介绍了 SpringMVC 的参数绑定、相关注解、自定义参数转换 ...
分类:
编程语言 时间:
2020-03-11 00:58:52
阅读次数:
73
本例编写了一个作用于方法之上的自定义注解,主要作用是记录方法的入参以及返回结果 1.自定义一个注解 /** * 需要切的方法 */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) @Documented public @ ...
分类:
其他好文 时间:
2020-03-10 12:09:56
阅读次数:
88
postFile(params, url) { var form = document.createElement("form"); form.style = "display:none;"; form.action = url; form.method = "post"; form.target ...
分类:
Web程序 时间:
2020-03-10 11:58:58
阅读次数:
168
lua中 table.getn(t) 、#t、 table.maxn(t) 这三个什么区别? RTlocal t = {1,888,x= 999,b=2,5,nil,6,7,[10]=1,8,{z = 1,y = 1},nil,nil}print(table.getn(t))print(#t)pri ...
分类:
其他好文 时间:
2020-03-10 11:43:01
阅读次数:
151
需求假设:假设在包com.zhoutao.controller下有方法getKey()方法,在JavaEE中,通过AOP获得该方法的的对象method,现在通过该对象的getName方法,仅仅只能获得getKey的结果,现在我需要的是com.zhoutao.controller.getKay 那么该 ...
分类:
其他好文 时间:
2020-03-10 01:26:11
阅读次数:
139
/* 打印1到最大的n位数 *///一开始想到的是直接构造出最大数,然后逆序输出,把‘0’排除在外即可。看了一些网上的博客,要注意大叔情况,因此使用以下方法。public class Class15 { public void printNumber(int n){ if(n <= 0){ retu ...
分类:
编程语言 时间:
2020-03-09 19:37:08
阅读次数:
66
index2.html <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <script type="text/javascript"> window.onload = func ...
分类:
Web程序 时间:
2020-03-09 19:33:48
阅读次数:
67
1 public class Xunhuan { 2 3 public static void main(String[] args) { 4 // TODO Auto-generated method stub 5 6 //for循环输出0——10 7 for(int i=0;i<=10;i++) ...
分类:
编程语言 时间:
2020-03-09 18:05:22
阅读次数:
48
COMP 9517T1, 2020 Assignment 1: SpecificationMaximum marks achievable: 10 marksThis assignment is worth 10% of the total course marks.Deliverables: Yo ...
分类:
其他好文 时间:
2020-03-08 20:24:54
阅读次数:
124
创建一个3行3列的二维数组并赋值,然后求对角之和,输入1-3,如果对角和是15就输出。 public class Ssa { public static void main(String[] args) { // TODO Auto-generated method stub int a[][]=n ...
分类:
编程语言 时间:
2020-03-08 17:59:40
阅读次数:
68