发布时间:2013-10-28 20:19:51
http://www.cnblogs.com/classic/archive/2011/04/27/2030234.htmlhttp://blog.sina.com.cn/s/blog_4e1e357d0101cjz8.html一个xxx.apk提交给测试、ok,去倒杯水,看看网页~~~~~呃,忽然觉得 是不是应该 给我的代码 提高点安全性,记得看过 apk直接可以 解压,然后很容易的就可以 反编译出 .j.........【阅读全文】
发布时间:2013-10-26 18:19:22
http://blog.csdn.net/kongxx/article/details/7237034Jetty实战之 嵌入式Jetty运行web app1. 运行标准的war文件1.1 首先找一个完整的war包,这里使用了struts2自带的一个例子应用程序struts2-blank.war;1.2 创建自己的Jetty Server启动类WebAppContextWithWarServer,其中指定了war文件的路径,并指定contex.........【阅读全文】
发布时间:2013-10-26 18:14:34
http://blog.csdn.net/kongxx/article/details/7230080Jetty实战之 嵌入式Jetty运行Servlet1. 首先创建一个ServletContextServer类,用来初始化web应用程序的Context,并且指定Servlet和Servlet匹配的url。这里指定了两个Servlet,分别是HelloServlet和GoodbyeServlet,并分别对应/hello/*和/goodbye/*。package com.g.........【阅读全文】
发布时间:2013-10-26 18:11:29
http://blog.csdn.net/kongxx/article/details/7227107Jetty实战之 嵌入式Jetty集成Spring运行1.创建一个Server类,用来通过spring来启动Jetty serverpackage com.google.code.garbagecan.jettystudy.sample4;import org.springframework.context.support.ClassPathXmlApplicationContext;public class MyServ.........【阅读全文】
发布时间:2013-10-26 18:07:35
http://blog.csdn.net/kongxx/article/details/7224423Jetty实战之 嵌入式运行Jetty实现简单文件服务器对于嵌入式运行Jetty,可以通过简单的一些代码实现一个简单的文件服务器的功能,如下:package com.google.code.garbagecan.jettystudy.sample3;import org.eclipse.jetty.server.Handler;import org.eclip.........【阅读全文】