会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
阮減显
上一页
1
2
3
4
5
6
7
···
15
下一页
2018年3月28日
caoni大业 spring boot 跳坑记
摘要: IDEA环境 win10 跑得刚刚,到xp系统就戈壁 报错 Caused by: java.lang.NoSuchMethodError: javax.servlet.ServletContext.getVirtualServerName()Ljava/lang/String; 原因:tomcat版
阅读全文
posted @ 2018-03-28 18:02 阮減显
阅读(1148)
评论(0)
推荐(0)
2018年3月22日
springmvc配置
摘要: 自定义类实现WebApplicationInitializer接口,并实现该接口中的onStartup方法,该方法在Spring容器启动之后就会被自动调用,然后创建AnnotationConfigWebApplicationContext的实例并加载我们的SpringMVC的配置文件最后创建Disp
阅读全文
posted @ 2018-03-22 16:54 阮減显
阅读(163)
评论(0)
推荐(0)
2018年3月21日
spring用注解配置,不用XML
摘要: //首先装载一个配置类AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(MyConfig.class);配置类这样写@Configuration //等同与xml中的<beans>标
阅读全文
posted @ 2018-03-21 15:16 阮減显
阅读(256)
评论(0)
推荐(0)
2018年3月9日
mysql c-api 预处理语句
摘要: 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 阮減显
阅读(257)
评论(0)
推荐(0)
2018年2月23日
nginx的https代理http配置
摘要: 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 阮減显
阅读(769)
评论(0)
推荐(0)
2018年2月12日
STL基础4:deque
摘要: #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 阮減显
阅读(112)
评论(0)
推荐(0)
2018年2月11日
STL基础3:map
摘要: #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 阮減显
阅读(114)
评论(0)
推荐(0)
STL基础2:vector中使用结构体
摘要: #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 阮減显
阅读(620)
评论(0)
推荐(0)
walsh矩阵
摘要: 矩阵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 阮減显
阅读(759)
评论(0)
推荐(0)
2017年12月7日
openssl 连接 https(nginx)
摘要: 参考源码路径 demos\ssl
阅读全文
posted @ 2017-12-07 11:05 阮減显
阅读(332)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
···
15
下一页
导航
博客园
首页
新随笔
联系
订阅
管理
公告