Nginx排错:Nginx日志报错connect() failed (110: Connection timed out) while connecting to upstream

  • Post author:
  • Post category:其他

项目概述 网上商城项目,SpringCloud框架,Eureka端口10086,zuul端口10010,商品后端端口8001,前端端口9001 环境: 1、本地主机win10,ip:192.168.0.110,起后端和前端 2、虚拟机centos7,ip192.168.0.112,做反向代理服务器 3、修改本地主机host(C:\Windows\System32\drivers\etc\hosts…

继续阅读 Nginx排错:Nginx日志报错connect() failed (110: Connection timed out) while connecting to upstream

gdb 调试 <没有那个文件或目录> 的解决方法

  • Post author:
  • Post category:其他

gdb 调试 <没有那个文件或目录> 的解决方法 如果源文件位置发生改变、或将可执行文件放在别的机器上执行,无法找到源文件,就不能显示代码了。 此时使用directory命令指定源文件目录即可。 (gdb) h dir   Add directory DIR to beginning of search path for source files.   Forget cached in…

继续阅读 gdb 调试 <没有那个文件或目录> 的解决方法

【SpringBoot学习13】Bean的加载方式,加载控制以及配置管理

  • Post author:
  • Post category:其他

文章目录 1. Bean的加载方式1.1 xml方式声明Bean1.2 xml+注解方式声明Bean1.3 注解方式声明Bean1.4 使用@Import注解注入bean1.5 编程形式注册bean1.6 导入实现了ImportSelector接口的类 2. Bean的加载控制3. Bean的依赖属性配置管理 1. Bean的加载方式 1.1 xml方式声明Bean <?xml versio…

继续阅读 【SpringBoot学习13】Bean的加载方式,加载控制以及配置管理

spark2.0 history server 内存溢出解决

  • Post author:
  • Post category:其他

从下面命令构建类可以看到,如果你想增加history server的内存,只能设置SPARK_DAEMON_MEMORY。 在SPARK_HISTORY_OPTS里设置 "-Xmx"不起作用。 class SparkClassCommandBuilder extends AbstractCommandBuilder { private final String className; private…

继续阅读 spark2.0 history server 内存溢出解决

js构造方法

  • Post author:
  • Post category:其他

//定义构造方法  function stu1() { this.stuNo="20160001" this.stuName="刘豪"; this.method= function() { eturn "刘豪长的贼帅"; } } var student=new stu1(); alert(student.method()); 用var声明的 变量和方法 都是对象People的私有变量和私有方法,不…

继续阅读 js构造方法

spring的applicationContext.xml如何自动加载

  • Post author:
  • Post category:其他

一个web工程自动加载的配置文件只有web.xml,想要加载其他.xml必须在web.xml里面进行配置。 用spring的时候需要一个bean容器来管理所有的bean,所有bean默认是写在applicationContext.xml里的,在web.xml里面是这么设置的, 1 <context-param> 2 <param-name>contextConfigLoca…

继续阅读 spring的applicationContext.xml如何自动加载

五大浏览器及其所使用的内核

  • Post author:
  • Post category:其他

五大浏览器 1.IE 2.Firefox 3.Opera 4.Chrome 5.Safari 五大浏览器的内核 1.IE的内核: Trident; 2.Chrome的内核: Chromium或chrome; 3.Firefox的内核:Gecko,俗称Firefox; 4.Safari的内核:Web kit; 5.Opera的内核:最初为Presto,后来是Web kit;现在是Blink; 版权声…

继续阅读 五大浏览器及其所使用的内核

vscode 开发工具指南之你所不知道的强悍功能

  • Post author:
  • Post category:其他

介绍Visual studio code的用法,结合实际开发需要,突出介绍一些强悍技能。无论是MacBook 还是Windows用户,它都能够实现快速文本编辑和markdown编写,让文本编辑进入高效模式。 1. 公共篇 1.1 云备份配置,一个json文件搞定 { "workbench.colorTheme": "Quiet Light", "workbench.startupEditor": …

继续阅读 vscode 开发工具指南之你所不知道的强悍功能

idea引入原有工程文件报错,cannot access org.springframework.core.env.EnviromentCapable

  • Post author:
  • Post category:其他

  因为换电脑,将原来的工程文件拷贝到新电脑上,通过IDEA引入project,引入后,提示cannot access org.springframework.core.env.EnviromentCapable,还有加载spring-boot-starter-web也报错,网上找了各种办法,都没有办法解决,最后想起来之前遇到一个问题也是引入原有工程报错,就把引入后生成的.iml文件删除了,问题解…

继续阅读 idea引入原有工程文件报错,cannot access org.springframework.core.env.EnviromentCapable