
Java编程
文章平均质量分 50
kyowill
这个作者很懒,什么都没留下…
展开
-
Java中值传递与引用传递
//Test.java public class Test { public static void main(String[] args) { Person ps = new Person(); ps.setPerson(10,"yyy",new Address()); ps.printPerson(); Addres原创 2016-05-14 17:20:33 · 418 阅读 · 0 评论 -
第一个Java web项目
参考博客地址 http://www.thejavageek.com/2013/08/11/mvc-architecture-with-servlets-and-jsp/ *.jsp创建在 WebContent路径下,访问时的Url为 http://localhost:8080/MVCDemo/login.jsp. 在WebContent/WEB-INF下创建web.xml下面是代码 Lo原创 2016-06-05 23:00:47 · 1652 阅读 · 0 评论 -
探究Servlet Filter 执行顺序
这篇blog通过console打印出的信息来判断 servlet和filter的执行顺序 TestServlet.javapackage com.cakes;import java.io.IOException; import java.io.PrintWriter;import javax.servlet.ServletException; import javax.servlet.http.H原创 2016-06-06 22:32:22 · 5020 阅读 · 0 评论 -
如何在ubuntu提高jdk版本
The easy wayThe easiest way to install the JDK 7 is to do it with the Web Up8 Oracle Java OOS. However, it is believed that this PPA is sometimes out of date. Also note the dangers of using a PPA.This转载 2016-08-31 07:48:17 · 602 阅读 · 0 评论 -
GC
GC总结转载 2017-02-25 15:31:14 · 686 阅读 · 0 评论