码迷,mamicode.com
首页 >  
搜索关键字:eclipse为tomcat安装browse deployment location    ( 9045个结果
nginx创建本地服务器和配置代理(解决跨域)
1,下载nginx 2,解压后打开conf/nginx.conf 修改配置 server { listen 8841;#监听端口 server_name localhost;#代理服务地址 location / { #默认访问 root html; index index.html index.ph ...
分类:其他好文   时间:2021-04-26 13:57:20    阅读次数:0
JavaScript location 常用方法和属性
Location 对象 Location对象包含有关当前URL的信息。location对象是window对象的一部分,可以通过window.location属性访问。 注意:没有适用于location对象的公共标准,但所有主流浏览器都支持它。  Location 对象属性 可以在Location对 ...
分类:编程语言   时间:2021-04-24 13:50:06    阅读次数:0
VSCode用到的插件和设置文件
记录一下我vs code用到的插件及配置文件 { "workbench.colorTheme": "Visual Studio Light", "workbench.sideBar.location": "left", "editor.accessibilitySupport": "off", "w ...
分类:其他好文   时间:2021-04-22 15:38:33    阅读次数:0
?.nginx rewrite
####rewrite语法 | Syntax: | rewrite regex replacement [flag]; | | | | | Default: | — | | Context: | server, location, if | //所有请求转发到/pages/maintain.html ...
分类:其他好文   时间:2021-04-21 12:32:16    阅读次数:0
[AWS - Design Resilient Architectures] 1.2 Design highly available and/or fault-tolerant architectures
Cloud computing models: With cloud deployment, nothing is installed on premise, but an Internet connection and network infrastructure solutions With h ...
分类:其他好文   时间:2021-04-21 12:22:48    阅读次数:0
haskell stack安装
1.下载stack 官网下载即可 2.setup 修改~/.stack/config.ymal文件 配置如下: setup-info-locations: - "http://mirrors.tuna.tsinghua.edu.cn/stackage/stack-setup.yaml" urls: ...
分类:其他好文   时间:2021-04-20 14:11:05    阅读次数:0
ingress的基本使用
1.Ingress测试示例 1.定义一个deployment [root@k8s-master01 service-ingress]# cat nginx-test.yaml apiVersion: v1 kind: Service metadata: name: ingress-test labe ...
分类:其他好文   时间:2021-04-16 12:25:19    阅读次数:0
golang -62135596800
参考下面的代码即可。 package main import ( "time" "fmt" ) func main() { //获取当前时间 t := time.Now() //2018-07-11 15:07:51.8858085 +0800 CST m=+0.004000001 fmt.Prin ...
分类:其他好文   时间:2021-04-15 12:17:48    阅读次数:0
Springboot集成flywaydb支持多数据源
flyway是一个数据库版本管理工具,集成进springboot后,每次系统升级启动时自动执行sql语句升级数据库,避免手动操作数据库。 1.maven引入依赖 <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-core< ...
分类:数据库   时间:2021-04-15 12:02:41    阅读次数:0
js获取链接中的参数
获取网页链接中的参数 function getUrlParam(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); i ...
分类:Web程序   时间:2021-04-13 12:43:17    阅读次数:0
9045条   上一页 1 ... 4 5 6 7 8 ... 905 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!