码迷,mamicode.com
首页 >  
搜索关键字:eclipse为tomcat安装browse deployment location    ( 9045个结果
nginx 正则匹配配置
nginx location正则写法 示例: # 如果 url 含有 . , 并且 不以 do 或 action 结尾,则匹配成功。 location ~ .*\.(?!(do|action)$) { root /demo/code/webroot; } ^~ 标识符匹配后面跟-一个字符串。匹配字符 ...
分类:其他好文   时间:2020-07-09 15:28:42    阅读次数:81
k8s autoscale命令
1> 创建测试资源 1.命令获取deployment yaml模板 kubectl create deployment web --image=nginx:1.14 -o yaml --dry-run >deploy-web.yaml 修改deployment -web模板,添加pod限制 apiV ...
分类:其他好文   时间:2020-07-09 15:08:42    阅读次数:159
Spring零配置之@Configuration注解详解
@Configuration介绍 Spring3.0之前要使用Spring必须要有一个xml配置文件,这也是Spring的核心文件,而Spring3.0之后可以不要配置文件了,通过注解@Configuration完全搞定。 @Configuration即用来代替Spring配置文件的,它就是一个@C ...
分类:编程语言   时间:2020-07-09 12:32:42    阅读次数:98
5-4 配置网络(nginx,host文件等)
这一小节是目前遇到阻力最大的小节。 首先是用公司发的mac来做项目,但是mac连接酒店的wifi,不论连接哪个房间的WiFi,测试本机ip都是xx.xx.0.255,不知道是不是这个原因,后面前后端联调一直不成功。 然后改用自己的电脑,自己的电脑虽然也是连接的酒店WiFi,但是ip地址却神奇的变成了 ...
分类:其他好文   时间:2020-07-09 00:49:33    阅读次数:80
BOM相关 对象的属性与方法
BOM BOM - Browser Object Model ( 浏览器对象模型 ),BOM 主要用于操作与管理浏览器相关状态。BOM 由以 window 对象为主以及其他常用对象如 navigator 、location 、history 、screen 、document 等等功能各异的对象组成 ...
分类:其他好文   时间:2020-07-08 18:15:00    阅读次数:65
nohup java -Dserver.port=8087 -Dspring.config.location=application-generic.yml -jar ${APP_HOME}/${APP_NAME} >/dev/null 2>&1
nohup java -Dserver.port=8087 -Dspring.config.location=application-generic.yml -jar ${APP_HOME}/${APP_NAME} >/dev/null 2>&1 #-Dserver.port为指定端口启动 #-Ds ...
分类:移动开发   时间:2020-07-08 15:25:20    阅读次数:106
IDEA中编译报错:常量字符串过长
问题: debug的时候,有个字符串参数值比较长,导致IDEA编译的时候报错:常量字符串过长。 解决方法: 1、选择File→Settings→Build,Execution,Deployment→Java Compiler,将Use compiler改为Eclipse即可,IDEA默认是Javac ...
分类:其他好文   时间:2020-07-07 17:58:45    阅读次数:52
Druid数据库监控
一、简介 Druid是阿里开源的一个JDBC应用组件, 其包括三部分: DruidDriver: 代理Driver,能够提供基于Filter-Chain模式的插件体系。 DruidDataSource: 高效可管理的数据库连接池。 SQLParser: 实用的SQL语法分析 通过Druid连接池中间 ...
分类:数据库   时间:2020-07-07 17:32:02    阅读次数:94
layui 中弹窗的时候关闭当前页面并刷新
var index=parent.layer.getFrameIndex(window.name); //获取当前窗口的name parent.layer.close(index);//关闭当前窗口 window.parent.location.reload();//刷新例子: layui.use( ...
分类:其他好文   时间:2020-07-07 17:18:39    阅读次数:162
k8s启动后容器总是重启Back-off restarting failed container
Successfullyassigneddefault/myapp-nginx-deployment-67f4dfb444-9f8gltonode2Pullingimage"hub.bosssoft.com/library/nginx:v1.8"Successfullypulledimage"hub.bosssoft.com/library/nginx:v1.8&qu
分类:其他好文   时间:2020-07-07 15:55:32    阅读次数:764
9045条   上一页 1 ... 25 26 27 28 29 ... 905 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!