上一页 1 2 3 4 5 6 7 ··· 15 下一页

2018年3月28日

摘要: IDEA环境 win10 跑得刚刚,到xp系统就戈壁 报错 Caused by: java.lang.NoSuchMethodError: javax.servlet.ServletContext.getVirtualServerName()Ljava/lang/String; 原因:tomcat版 阅读全文
posted @ 2018-03-28 18:02 阮減显 阅读(1054) 评论(0) 推荐(0) 编辑

2018年3月22日

摘要: 自定义类实现WebApplicationInitializer接口,并实现该接口中的onStartup方法,该方法在Spring容器启动之后就会被自动调用,然后创建AnnotationConfigWebApplicationContext的实例并加载我们的SpringMVC的配置文件最后创建Disp 阅读全文
posted @ 2018-03-22 16:54 阮減显 阅读(156) 评论(0) 推荐(0) 编辑

2018年3月21日

摘要: //首先装载一个配置类AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(MyConfig.class);配置类这样写@Configuration //等同与xml中的<beans>标 阅读全文
posted @ 2018-03-21 15:16 阮減显 阅读(247) 评论(0) 推荐(0) 编辑

2018年3月9日

摘要: stmt = mysql_stmt_init(mysql) mysql_stmt_prepare(stmt, "SELECT ?", strlen("SELECT ?")) mysql_stmt_bind_param(stmt, param_bind) mysql_stmt_execute(stmt) mysql_stmt_bind_result(stmt, result_bind) mys... 阅读全文
posted @ 2018-03-09 20:02 阮減显 阅读(252) 评论(0) 推荐(0) 编辑

2018年2月23日

摘要: http { upstream https2http_proxy{ server 192.168.22.103:80; } server { listen 1443 ssl; server_name localhost; ssl_certificate /home/liuyi/i... 阅读全文
posted @ 2018-02-23 15:35 阮減显 阅读(753) 评论(0) 推荐(0) 编辑

2018年2月12日

摘要: #include #include #include using namespace std; #define N_K 10 struct Data_s{ int number; char name[20]; }; typedef struct Data_s Data_t; void makeData(Data_t *d) { int i; ... 阅读全文
posted @ 2018-02-12 12:19 阮減显 阅读(110) 评论(0) 推荐(0) 编辑

2018年2月11日

摘要: #include #include #include using namespace std; #define N_K 10 typedef struct { int a; char b[8]; } Data_t; void makeData(Data_t *d) { int i; for (i=0;i m; Data_... 阅读全文
posted @ 2018-02-11 15:28 阮減显 阅读(105) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include using namespace std; #define N_K 100 struct Data_s{ int number; char name[20]; bool operator (const Data_s &obj) const { return n... 阅读全文
posted @ 2018-02-11 14:23 阮減显 阅读(599) 评论(0) 推荐(0) 编辑
摘要: 矩阵A(1) 1 矩阵A(2) 1 1 1 -1 矩阵A(2n) 由上一级矩阵组合,即用上一级矩阵的一行生成本级矩阵的一行。 生成规则是 A(2n)[k] = { A(n)[k], A(n)[k] } A(2n)[k+1] ={ A(n)[k], -A(n)[k] } 用文字描述就是本级矩阵的两行行 阅读全文
posted @ 2018-02-11 11:31 阮減显 阅读(730) 评论(0) 推荐(0) 编辑

2017年12月7日

摘要: 参考源码路径 demos\ssl 阅读全文
posted @ 2017-12-07 11:05 阮減显 阅读(324) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 15 下一页

导航