摘要:
package restful; public class TestOne { /** * 1.REST基础知识 * REST远程过程调用机制, * 不同与soap * REST :面向资源的 * SOAP:面向行为和动作 * * Spring如何支持REST * 1)控制器处理所有http方法,四个R... 阅读全文
摘要:
ArrayList list = new ArrayList(); list.add("b"); list.add("a"); list.add("d"); list.forEach(item -> System.out.print(item)); ... 阅读全文
摘要:
var x; if(x){alert("aa");}else{alert("bb");} 阅读全文
摘要:
(function($){ $.fn.newTable = function(){ //var thead = $(""); var tr = $(""); var tbody = $(""); var tab = $(""); for(var i=0 ;iaaa"); tr.ap... 阅读全文
摘要:
public class TestOne { public static void main(String[] args) { /** * * JSP全称:JavaServer pages * JSTL : JavaServer Pages Standard Tags Languages JSP标准标签库 ... 阅读全文
摘要:
package spring_mvc; public class Two { public static void main(String[] args) { /** *1. DispatherServlet的配置---实现? * 1)在web.xml上配置 * 2)配置在Servlet上(Servlet3.0,... 阅读全文