上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 24 下一页
摘要: //连接本地的 Redis 服务 $redis = new \Redis(); $redis->connect('127.0.0.1', 6379); $auth = $redis->auth('111'); $redis->select(1); $redis->set("tutorial-name 阅读全文
posted @ 2021-04-01 09:30 wujf 阅读(188) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> *{ margin:0;padding:0; } .container{ display: flex; hei 阅读全文
posted @ 2020-12-22 09:55 wujf 阅读(147) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> .left, .middle, .right { position: rela 阅读全文
posted @ 2020-12-22 09:54 wujf 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 问题: 站点的root目录为 /data/web/ ,现在想在www.111.com 下放一个站点,www.111.com/abc/ 但不能直接在/data/web/下创建abc目录,要放在 /data1/abc/下。 解决办法: 使用nginx的alias功能实现虚拟目录 在配置文件中加入 loc 阅读全文
posted @ 2020-12-18 17:03 wujf 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 先上pom依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <gro 阅读全文
posted @ 2020-10-14 10:49 wujf 阅读(270) 评论(0) 推荐(0) 编辑
摘要: #!groovy def oper_checkout(SCM_TYPE,SCM_URL,SCM_AUTH_PASS,SCM_BRANCH=' ',SCM_AUTH_USER=' '){ if (SCM_TYPE =='git') { return checkout([$class: "GitSCM" 阅读全文
posted @ 2020-09-30 16:51 wujf 阅读(814) 评论(0) 推荐(0) 编辑
摘要: jvm参数方式: -javaagent:D:/codesoft/elastic-apm-agent-1.18.0.jar -Delastic.apm.service_name=my-application -Delastic.apm.server_urls=http://localhost:8200 阅读全文
posted @ 2020-09-28 11:36 wujf 阅读(1547) 评论(0) 推荐(0) 编辑
摘要: from selenium import webdriver from selenium.webdriver import ActionChains import time dr = webdriver.Chrome() dr.get('http://www.ylq.com/neidi/yangmi 阅读全文
posted @ 2020-08-13 17:11 wujf 阅读(1366) 评论(0) 推荐(1) 编辑
摘要: from py2neo import Graph, Node, Relationship graphdb = Graph(host='localhost', http_port=7978, user='neo4j', password='123456') # 检查当前步是否有效 def checkE 阅读全文
posted @ 2020-07-28 13:53 wujf 阅读(928) 评论(0) 推荐(0) 编辑
摘要: package study; import java.io.File; import java.io.IOException; import java.nio.file.Files; import java.security.KeyFactory; import java.security.KeyP 阅读全文
posted @ 2020-07-08 11:11 wujf 阅读(438) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 24 下一页