码迷,mamicode.com
首页 >  
搜索关键字:context root cannot be empty    ( 74556个结果
Spring Cloud Sleuth链路监控应用(
一、Sleuth介绍 为什么要使用微服务跟踪?它解决了什么问题? 1.微服务的现状? 微服务的现状 随着业务的发展,单体架构变为微服务架构,并且系统规模也变得越来越大,各微服务间的调用关系也变得越来越复杂。多服务协同工作 在微服务的应用中,一个由客户端发起的请求在后端系统中会经过多个不同的微服务调用 ...
分类:编程语言   时间:2021-01-06 12:38:24    阅读次数:0
systemd-resolved and resolvctl on ubuntu; 127.0.0.53 nameserver;
前段时间,我偶然进行查看linux DNS配置,通过查看 /etc/resolv.conf 文件,得到如下结果: ? devices ll /etc/resolv.conf lrwxrwxrwx 1 root root 39 12月 28 18:55 /etc/resolv.conf -> ../r ...
分类:系统相关   时间:2021-01-06 12:29:13    阅读次数:0
python 快速启动http监听服务
python3 [root@vm10-20-9-45 ~]# python3 -m http.server 2378 Serving HTTP on 0.0.0.0 port 2378 (http://0.0.0.0:2378/) ... 100.81.171.16 - - [03/Jan/2021 ...
分类:编程语言   时间:2021-01-06 12:24:12    阅读次数:0
Linux shell中&,&&,|,||的用法
在玩dvwa的命令注入漏洞的时候,遇到了没有预料到的错误,执行ping 127.0.0.1 & echo "<?php phpinfo(); ?>" > shell.php发现返回的执行结果如下图 理论上在dvwa的根目录里应该有一个shell.php但是并没有出现 root@kali:/var/w ...
分类:系统相关   时间:2021-01-06 12:22:59    阅读次数:0
Multiple annotations found at this line: - cvc-elt.1: Cannot find the declaration of element 'beans' 解决办法
1、在使用eclipse构建基于maven的spring工程时,报下面的错误,如下所示: 1 Multiple annotations found at this line: 2 - cvc-elt.1: Cannot find the declaration of element 'beans'. ...
分类:其他好文   时间:2021-01-06 12:07:38    阅读次数:0
练习:已知后序遍历和中序遍历,求层次遍历--C++实现
#include<iostream> #include<vector> using namespace std; vector<char>post,in; vector<char>level(100000,-1); in N; void ergodic(int root,int start,int ...
分类:编程语言   时间:2021-01-05 11:40:19    阅读次数:0
Leetcode101.对称二叉树
题目 1 class Solution { 2 public: 3 4 bool isSymmetric(TreeNode* root) { 5 return check(root,root); 6 } 7 bool check(TreeNode* p,TreeNode* q) { 8 if(!p ...
分类:其他好文   时间:2021-01-05 11:37:37    阅读次数:0
日志系统源码分析
Log::info('测试'); Log是一个门面 本质类是Logmanager 门面就是门面 就是代理 本质上 没有任何内在的东西 public function info($message, array $context = []) { $this->driver()->info($messag ...
分类:其他好文   时间:2021-01-05 11:35:40    阅读次数:0
144. 二叉树的前序遍历
144. 二叉树的前序遍历 地址:https://leetcode-cn.com/problems/binary-tree-preorder-traversal/ //给你二叉树的根节点 root ,返回它节点值的 前序 遍历。 // // // // 示例 1: // // //输入:root = ...
分类:其他好文   时间:2021-01-05 11:30:49    阅读次数:0
华为云操作记录
华为云操作记录 创建用户 新建用户 sudo adduser weirwei 添加免密 root 权限 sudo vim /etc/sudoers 添加 root 权限 sudo 免密 切换到自己用户 su weirwei 自此以后,所有操作都在自己的用户下执行 安装 jdk8 sudo apt-g ...
分类:其他好文   时间:2021-01-05 11:29:34    阅读次数:0
74556条   上一页 1 ... 89 90 91 92 93 ... 7456 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!