cookie是网站为了标示用户身份而储存在用户本地终端(Client Side)上的数据(通常经过加密)。 cookie数据始终在同源的http请求中携带(即使不需要),记会在浏览器和服务器间来回传递。 sessionStorage和localStorage不会自动把数据发给服务器,仅在本地保存。 ...
分类:
其他好文 时间:
2020-04-19 23:43:08
阅读次数:
108
[toc] 昨日内容 CMDB设计 1.完善客户端采集功能 错误异常处理 使用traceback模块实现获取详细的错误信息 traceback 该模块提供了一个标准接口,用于提取,格式化和打印Python程序的堆栈跟踪。它在打印堆栈跟踪时完全模仿了Python解释器的行为。当您想要在程序控制下打印堆 ...
分类:
数据库 时间:
2020-04-19 22:30:36
阅读次数:
103
indexof()用法 package com.netease; import org.apache.commons.lang3.StringEscapeUtils; import org.apache.http.client.ClientProtocolException; import org. ...
分类:
移动开发 时间:
2020-04-19 22:11:43
阅读次数:
75
用户可以直接在starlims对外的“客户申请门户”上发起检验申请,并追踪检验进度等。 该功能适用于第三方检验机构的对外端口,一般称之为CSS(Customs Service System 客户服务系统),也可以作为CRM(Customs Relationship Management 客户关系管理 ...
分类:
其他好文 时间:
2020-04-19 14:57:15
阅读次数:
77
一、jenkins配置git 1、安装源码管理器 git:http://updates.jenkins-ci.org/download/plugins/git/ 去上面的网址中把离线插件下载下来,然后去jenkins的插件管理功能中导入git插件。 1)git-client.hpi、git-serv ...
分类:
其他好文 时间:
2020-04-19 12:47:08
阅读次数:
59
[TOC] 静态资源映射规则、定制首页、定制404页面、配置网站的图标 静态资源映射规则 SpringBoot中对于静态资源(css,js,img....)的存放是有规定的; 在SpringBoot中,SpringMVC的web配置都在 这个自动配置类中,在其中有个静态内部类,也就是自动配置适配器: ...
分类:
编程语言 时间:
2020-04-19 12:38:00
阅读次数:
86
import java.util.*; public class Client { public static void main(String[] args) { String str = "abcdefghijk"; char[][] chars = strArr(str, 4); for (c ...
分类:
其他好文 时间:
2020-04-19 11:14:56
阅读次数:
60
import java.util.*; public class Client { public static void main(String[] args) { String str = "abcdbe"; int i = maxSubLen(str); System.out.println(i ...
分类:
其他好文 时间:
2020-04-19 11:10:38
阅读次数:
50
安装命令 提示如下错误 按错误提示的版本, 安装对应版本的openssh client 再次执行安装ssh server命令 启动ssh server 好了, 可以愉快的scp了. ...
分类:
系统相关 时间:
2020-04-19 09:19:31
阅读次数:
73
webservice接口:一个url下包含多个接口,返回数据为xml文档 安装模块 pip install suds-jurko from suds import client url = "https://xxxxxx" cli = client.Client(url=url) # 查看该webs ...
分类:
编程语言 时间:
2020-04-19 01:14:40
阅读次数:
239