摘要:
问题环境: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.10.RELEASE</version> <rela
阅读全文
posted @ 2020-11-09 10:56
xiluhua
阅读(725)
推荐(0)
摘要:
在docker下安装 https://docs.gitlab.cn/jh/install/docker.html 安装所需最小配置 内存至少4G 系统内核至少在3.10以上 uname -r 命令可查看系统内核版本 安装docker 更新yum源 yum update 安装依赖 yum instal
阅读全文
posted @ 2020-11-08 20:11
xiluhua
阅读(104)
推荐(0)
摘要:
springboot 笔记: https://files.cnblogs.com/files/xiluhua/SpringBootMd.rar
阅读全文
posted @ 2020-11-07 16:08
xiluhua
阅读(91)
推荐(0)
摘要:
试了一下,在浏览器下 https://index.docker.io/v1/search?q=mysql&n=25 能有正常响应。 排除服务端地址问题。看网上说是系统时间与服务器时间与外界时间不一致。同步后验证,果然是这个原因。 root@localhost /etc/docker $ docker
阅读全文
posted @ 2020-11-07 15:52
xiluhua
阅读(4537)
推荐(0)
摘要:
处理静态资源 <mvc:default-servlet-handler/> 处理动态资源 requstMapping <mvc:annotation-driven></mvc:annotation-driven> springMvc 如何输出 json: 第一步 第二步 第三步 第四步 第五步
阅读全文
posted @ 2020-11-01 11:51
xiluhua
阅读(120)
推荐(0)
摘要:
maven 打包命令,跳过测试 clean package -Dmaven.test.skip=true
阅读全文
posted @ 2020-06-03 13:24
xiluhua
阅读(1817)
推荐(0)
摘要:
https://www.cnblogs.com/boonya/p/10691466.html mvn clean install -Dmaven.test.skip=true
阅读全文
posted @ 2020-05-27 20:25
xiluhua
阅读(2818)
推荐(0)
摘要:
首先,感谢尚硅谷! 剖析Vue实现原理 - 如何实现双向绑定mvvm https://github.com/xiluhua/mvvm 知识点准备: 1. [].slice.call(lis): 将伪数组转换为真数组 2. node.nodeType: 得到节点类型 3. Object.defineP
阅读全文
posted @ 2020-05-24 21:07
xiluhua
阅读(362)
推荐(0)
posted @ 2020-05-24 16:48
xiluhua
阅读(236)
推荐(0)
posted @ 2020-05-24 15:22
xiluhua
阅读(148)
推荐(0)
摘要:
node 配置 npm npm 命令 查看全局文件包路径 npm config listnpm config ls -l npm install -g xxx 时, 模块将被下载安装到【全局目录】中。 npm config set prefix "目录路径" # 设置使用哪个版本的 npm 由此决定
阅读全文
posted @ 2020-05-24 15:11
xiluhua
阅读(136)
推荐(0)
摘要:
commonJS 规范 1. 模块引用 require('./path'), exports 暴露属性&方法 2. 模块定义 js 文件 3. 模块标识 各个 js 文件,包括: - 核心模块 由 node 引擎提供的模块 比如: var fs=require('fs') - 文件模块 用户自己编写
阅读全文
posted @ 2020-05-24 13:44
xiluhua
阅读(149)
推荐(0)
摘要:
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/conc
阅读全文
posted @ 2020-05-24 11:48
xiluhua
阅读(7275)
推荐(0)
摘要:
安装 node.js https://nodejs.org/en/
阅读全文
posted @ 2020-05-17 21:32
xiluhua
阅读(731)
推荐(0)
posted @ 2020-05-14 17:15
xiluhua
阅读(303)
推荐(0)
摘要:
idea jihuo http://idea.medeming.com/jets/ idea [Open File or Project] 修改默认路径 https://blog.csdn.net/tangs_/article/details/85325223 idea配置项目运行时内存大小 -se
阅读全文
posted @ 2020-05-13 18:22
xiluhua
阅读(137)
推荐(0)
摘要:
nginx 必须启用 启用 --with-stream 模块。 ./configure --with-stream --with-http_ssl_module --with-http_stub_status_module 可下载源码编译。 nginx.conf的配置: worker_process
阅读全文
posted @ 2020-05-03 21:12
xiluhua
阅读(4301)
推荐(0)
摘要:
package com.taiping.demo; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; impo
阅读全文
posted @ 2020-04-29 15:54
xiluhua
阅读(1156)
推荐(0)
摘要:
安装,参考:https://blog.csdn.net/pancheng1984/article/details/79823467 安装oracle 11.2.4时,报错: 未找到文件...WFMLRSVCApp.ear文件 解决方法如下: oracle 11.2.4有两个压缩包,将压缩包解压至同一
阅读全文
posted @ 2020-02-16 11:38
xiluhua
阅读(763)
推荐(0)
摘要:
demo07_身份运算符 ''' @author: xilh @since: 20200124 ''' a = 20 b = 20 if ( a is b ): print("1 - a 和 b 有相同的标识") else: print("1 - a 和 b 没有相同的标识") if ( a is
阅读全文
posted @ 2020-01-31 12:48
xiluhua
阅读(175)
推荐(0)
摘要:
demo06_成员运算符 ''' @author: xilh @since: 20200124 ''' a = 10 b = 20 slist = [1, 2, 3, 4, 5 ]; if ( a in slist ): print("1 - 变量 a 在给定的列表中 slist 中") else:
阅读全文
posted @ 2020-01-31 12:40
xiluhua
阅读(165)
推荐(0)
摘要:
demo05_逻辑运算符 ''' @note: https://www.runoob.com/python/python-operators.html @author: xilh @since: 20200124 ''' a = 10 b = 20 if a and b : print("1 - 变
阅读全文
posted @ 2020-01-31 12:33
xiluhua
阅读(149)
推荐(0)
摘要:
demo04_位运算符 ''' @note: https://www.runoob.com/python/python-operators.html @author: xilh @since: 20200124 ''' a = 60 # 60 = 0011 1100 b = 13 # 13 = 00
阅读全文
posted @ 2020-01-31 12:25
xiluhua
阅读(156)
推荐(0)
摘要:
demo03_赋值运算符 ''' @note: https://www.runoob.com/python/python-operators.html @author: xilh @since: 20200124 ''' a = 21 b = 10 c = 0 c = a + b print("1.
阅读全文
posted @ 2020-01-31 12:16
xiluhua
阅读(188)
推荐(0)
摘要:
demo02_比较运算符 ''' @note: https://www.runoob.com/python/python-operators.html @author: xilh @since: 20200124 ''' a = 21 b = 10 c = 0 f = 'abc' g = 'abc'
阅读全文
posted @ 2020-01-31 11:56
xiluhua
阅读(206)
推荐(0)
摘要:
原创 - 转载请注明出处 场景: 原本跑的好好的项目, 上传到 git, 再重新导入到 eclipse. 却发现没有自动引入需要的包. 手动 Ctrl+shift+0 也没有用. 如截图: 解决办法: 上传 git 提交代码时, 提交项目的 .pydevproject 文件
阅读全文
posted @ 2020-01-28 15:25
xiluhua
阅读(555)
推荐(0)
摘要:
算术运算符 ''' @note: https://www.runoob.com/python/python-operators.html @author: xilh @since: 20200124 ''' a = 21 b = 10 c = 0 c = a + b print("a + b 的值为
阅读全文
posted @ 2020-01-28 12:20
xiluhua
阅读(188)
推荐(0)
摘要:
退出Windows终端python交互模式 Ctrl + Z + Enter 参考:https://jingyan.baidu.com/article/495ba841d4200438b20ede53.html 环境: windows10 1. 安装 Python https://www.pytho
阅读全文
posted @ 2020-01-24 18:53
xiluhua
阅读(2494)
推荐(0)
posted @ 2020-01-24 13:07
xiluhua
阅读(297)
推荐(0)
摘要:
linux 配置 JDK export JAVA_HOME=/usr/share/jdk1.6.0_14export PATH=$JAVA_HOME/bin:$PATHexport CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
阅读全文
posted @ 2020-01-20 12:32
xiluhua
阅读(180)
推荐(0)
posted @ 2020-01-08 09:05
xiluhua
阅读(502)
推荐(0)
摘要:
ClassPathResource classPathResource = new ClassPathResource("template/demo/200000168-check-response.xml"); InputStream inputStream = classPathResource.getInputStream(); resp...
阅读全文
posted @ 2019-12-22 16:05
xiluhua
阅读(1772)
推荐(0)
posted @ 2019-12-10 17:44
xiluhua
阅读(565)
推荐(0)
摘要:
curl -H "Content-Type:plain/text" -X POST -d '<?xml version="1.0" encoding="UTF-8" standalone="yes"?><REQUEST> <BUSINESS> <BUSI_ID>2001000151301</BUSI_ID> <SERVICE_CODE>checkBill</SERVICE_CODE> <PARTN
阅读全文
posted @ 2019-11-23 23:46
xiluhua
阅读(6463)
推荐(0)
摘要:
———————————————— 版权声明:本文为CSDN博主「荚小白」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。原文链接:https://blog.csdn.net/m0_37771398/article/details/90287853 ———————
阅读全文
posted @ 2019-11-21 21:58
xiluhua
阅读(1627)
推荐(0)
摘要:
动静分离业务解决网页请求不被串改
阅读全文
posted @ 2019-11-19 16:02
xiluhua
阅读(173)
推荐(0)
posted @ 2019-11-10 08:59
xiluhua
阅读(107)
推荐(0)
摘要:
java 主动信任证书 SSLContext sslcontext = SSLContexts.custom().loadKeyMaterial(keyStore, mid.toCharArray()).loadTrustMaterial(keyStore, new TrustStrategy()
阅读全文
posted @ 2019-10-30 10:57
xiluhua
阅读(1438)
推荐(0)
摘要:
转自:https://blog.csdn.net/sehanlingfeng/article/details/78920423
阅读全文
posted @ 2019-10-15 22:32
xiluhua
阅读(138)
推荐(0)
摘要:
1.1. ¿Cómo te llamas?Ana : ¿Cómo te llamas?Paco: Buenos dias. Yo soy Paco. Y tú, ¿cómo te llemas?Ana : Yo me llamo Ana. Ellos son mis amigos. Ella se
阅读全文
posted @ 2019-10-02 16:59
xiluhua
阅读(181)
推荐(0)