安装部署见官方文档: https://jenkins.io/zh/doc/ 替换插件下载镜像 使用清华镜像: 1 、修改hosts文件 vim /etc/hosts 添加 127.0.0.1 updates.jenkins-ci.org 2、配置Nginx代理 vim conf/nginx.conf ...
分类:
其他好文 时间:
2019-12-13 10:46:41
阅读次数:
96
封面图片来自Google搜索,关键字: Fiori Deployment 方式1 On premise环境下以BSP应用作为Fiori应用部署和运行的载体 典型的例子是SAP CRM这几个Fiori应用: 在Google上搜索关键字Fiori Architecture, 能找到这样一张图片,其中CR ...
分类:
其他好文 时间:
2019-12-12 23:54:22
阅读次数:
174
a.html页面:function sq(a){ window.location.href = "./list.html?rid=" + a;}sq(2);b.html页面var rid = getQueryString("rid");//这样b页面就接收到a页面传过来的参数的值了,只是jq的方法, ...
分类:
Web程序 时间:
2019-12-12 18:13:26
阅读次数:
92
8、使用注解开发 在Spring4之后,要使用注解开发,必须要保证AOP包已经导入了 使用注解需要导入context约束,增加注解的支持! 1. bean 2. 属性如何注入 3. 衍生的注解 @Component有几个衍生注解,我们在web开发中,会按照mvc三层架构分层! dao 【@Repos ...
分类:
编程语言 时间:
2019-12-12 15:28:47
阅读次数:
96
有时候在服务器上配置某些文件比如TXT文件,在浏览器打开的时候,会弹出下载。如何只让他在浏览器中显示,而不是下载呢。在nginx配置文件中添加一行代码 add_header Content-Type text/plain; //文件内容以文本格式显示//例如 location = /md/test. ...
分类:
其他好文 时间:
2019-12-12 12:45:38
阅读次数:
281
location语法: location [=|~|~*|^~] /uri/ { … } 记住以下即可: 完全匹配(=) 无正则普通匹配(^~)(^ 表示“非”,~ 表示“正则”,字符意思是:不要继续匹配正则) 正则表达式匹配(~或者~*) 普通匹配 rewrite语法: rewrite regex ...
分类:
其他好文 时间:
2019-12-11 19:01:51
阅读次数:
71
python使用Redis数据库 安装依赖 直接脚本文件使用 半连接池使用 cache缓存使用,要额外安装django redis ...
分类:
编程语言 时间:
2019-12-11 00:12:31
阅读次数:
75
#### gitlab反向代理 server { listen 80; server_name gitlab.hp.com; location / { proxy_pass http://192.168.5.119:8880; index index.html index.htm index.jsp ...
分类:
其他好文 时间:
2019-12-10 17:15:00
阅读次数:
136
function getContextPath() { var pathName = document.location.pathname; var index = pathName.substr(1).indexOf("/"); var result = pathName.substr(0,ind ...
分类:
Web程序 时间:
2019-12-10 16:50:32
阅读次数:
87