摘要:
IDEA环境 win10 跑得刚刚,到xp系统就戈壁 报错 Caused by: java.lang.NoSuchMethodError: javax.servlet.ServletContext.getVirtualServerName()Ljava/lang/String; 原因:tomcat版 阅读全文
摘要:
自定义类实现WebApplicationInitializer接口,并实现该接口中的onStartup方法,该方法在Spring容器启动之后就会被自动调用,然后创建AnnotationConfigWebApplicationContext的实例并加载我们的SpringMVC的配置文件最后创建Disp 阅读全文
摘要:
//首先装载一个配置类AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(MyConfig.class);配置类这样写@Configuration //等同与xml中的<beans>标 阅读全文
摘要:
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... 阅读全文
摘要:
http { upstream https2http_proxy{ server 192.168.22.103:80; } server { listen 1443 ssl; server_name localhost; ssl_certificate /home/liuyi/i... 阅读全文
摘要:
#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; ... 阅读全文
摘要:
#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_... 阅读全文
摘要:
#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... 阅读全文
摘要:
矩阵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] } 用文字描述就是本级矩阵的两行行 阅读全文
摘要:
参考源码路径 demos\ssl 阅读全文