- 博客(11)
- 收藏
- 关注
原创 springMVC实现多个前缀和后缀映射
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:tx="http://www.springframework.or...
2019-08-14 14:10:13 1978
原创 serversocket实现动态网页
public class web {public static void main(String args[]){ try{Service service=new Service(); ServerSocket server=new ServerSocket(80); service.setServerSocket(server); service.start(); }...
2019-08-12 12:08:14 316
原创 Socket实现浏览
我试了几个方法都没有找到判断结束条件,但是不影响接收数据。public class Brown {public static void main(String args[]){ Socket socket=null; OutputStream outputStream=null; InputStream inputStream=null; InputStreamReader reade...
2019-08-07 14:41:27 174
原创 spring aop注解实现
public class ceshi{public static void main(String args[]){ ApplicationContext context=new ClassPathXmlApplicationContext("file:C:/Users/Administrator/workspace/test/src/test/aop.xml"); Log log=(Log...
2019-08-05 19:47:15 180
原创 spring中aop标签实现
public class ceshi{public static void main(String args[]){ ApplicationContext context=new ClassPathXmlApplicationContext("file:C:/Users/Administrator/workspace/test/src/test/aop.xml"); Log log=(Log...
2019-08-05 19:34:51 191
原创 无配置文件实现spring aop
import java.lang.reflect.Method;import org.springframework.aop.support.JdkRegexpMethodPointcut;import org.springframework.aop.support.DefaultPointcutAdvisor;import org.springframework.aop.AfterRetu...
2019-08-04 22:55:09 375
原创 Java 动态代理
public static void main(String args[]){ Main main=(Main)Proxy.newProxyInstance(Leader.class.getClassLoader(),Leader.class.getInterfaces(),new Secretary()); main.run();}}interface Main{ void...
2019-08-04 18:03:49 96
原创 html5小游戏代码-2048游戏
<!doctype html><meta name="author" content="苏道涵"/><meta name="keywords" content="2048"/><meta http-equiv="content-Type" content="text/html;charset=gb2312"/><html>&...
2019-06-29 13:53:39 24446 2
原创 html5小游戏源码- 扫雷
<!doctype html><html><head><meta name="author" content="苏道涵"/><meta name="keywords" content="扫雷,html5小游戏"/><meta name="description" content="经典扫雷小游戏"/><met...
2019-06-29 13:50:57 10952 4
原创 红黑树-自己写的红黑树插入实现
public class RedandBlack {private class Node{private boolean color=false; private int value; private Node left; private Node right;}//存储节点private Node head; private int black; private int temp=0...
2019-06-10 09:49:51 206
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人