1、springmvc框架 1.1 什么是springmvc springmvc是spring框架的一个模块,springmvc和spring无需通过中间整合层进行整合。 springmvc是一个基于mvc的web框架。 1.2 Web MVC mvc设计模式在b/s系统下应用: 用户发起reque ...
分类:
编程语言 时间:
2021-03-17 14:41:09
阅读次数:
0
环境准备 本篇文章使用的 ACME 客户端是基于 Docker 容器使用的,所以需要准备 Docker 运行环境。本文使用的是 CentOS 7.x 与 Docker CE - 19.03.13,且已经安装了 Docker Compose 工具。 我已经参考官方的 GitHub 文章编写了 acme ...
分类:
其他好文 时间:
2021-03-17 14:30:14
阅读次数:
0
使用docker在Linux下部署项目(以nginx + node示例) docker linux 安装: #sudo wget -qO- https://get.docker.com | sh -q标识安装时输出信息要简单,O-标识标准输出,而不是输出到文件 #sudo usermod -aG d ...
分类:
系统相关 时间:
2021-03-17 14:23:09
阅读次数:
0
vue项目的config配置 // 以下的IP和端口均为假设,方便后续举例说明 proxyTable: { "/a": { target: "http://111.11.111.111:1111", changeOrigin: true, ws: true, pathRewrite: { "^/a" ...
分类:
其他好文 时间:
2021-03-17 14:16:30
阅读次数:
0
android动画效果大全!免费Android高级工程师学习资源,复习指南 ...
分类:
移动开发 时间:
2021-03-17 14:14:03
阅读次数:
0
SPA仅在 Web 页面初始化时加载相应的 HTML、JavaScript 和 CSS。一旦页面加载完成,SPA 不会因为用户的操作而进行页面的重新加载或跳转;取而代之的是利用路由机制实现 HTML 内容的变换,UI 与用户的交互,避免页面的重新加载。 优点: 用户体验好、快,内容的改变不需要重新加 ...
分类:
其他好文 时间:
2021-03-17 14:09:39
阅读次数:
0
原因:asp.net默认最大上传文件大小为4M,运行超时时间为90S。 修改web.config文件可以改变这个默认值 <configuration> <system.web> <httpRuntime maxRequestLength="1048576" executionTimeout="360 ...
分类:
Web程序 时间:
2021-03-17 14:07:55
阅读次数:
0
1 首先,每个微服务中都要配置SwaggerConfig及引入swagger的dependency,服务启动后,保证访问单个微服务的swagger是通的。 2 配置nginx,分配一个端口给统一的所有swagger文档使用。nginx的config中增加一个转发到注册中心,然后通过注册中心就可以获取 ...
分类:
编程语言 时间:
2021-03-17 14:07:01
阅读次数:
0
原文:https://reactjs.org/blog/2019/08/15/new-react-devtools.html Introducing the New React DevTools We are excited to announce a new release of the Reac ...
分类:
其他好文 时间:
2021-03-17 14:05:07
阅读次数:
0
前言 nginx : version 1.18 server 配置参数 这里只给 server 参数 server { listen 443 ssl; server_name test.com; # 这里填域名,可以是二级域名,可以是正则域名 ssl_certificate "/srv/nginx/ ...
分类:
其他好文 时间:
2021-03-17 14:03:08
阅读次数:
0