1、转发与重定向 在SpringMVC中,如果当处理器对请求处理完毕后,在不是返回JSON数据的情况下,一般都会跳转到其它的页面,此时有两种跳转方式:请求转发与重定向。在SpringMVC中分别对应forward和redirect这两个关键字。 关键字 描述 SpringMVC实现 原生servle ...
分类:
编程语言 时间:
2021-05-24 08:09:34
阅读次数:
0
1)登陆搭建gitlab的服务器 cd /opt/gitlab/embedded/service/gitlab-rails/config vim gitlab.yml 2) gitlab-ctl restart ...
分类:
系统相关 时间:
2021-05-24 08:07:40
阅读次数:
0
设置电脑缩放与布局为100% 关闭抗锯齿 相关代码: viewer.scene.fxaa=false viewer.scene.postProcessStages.fxaa.enabled = false; 添加如下代码到项目中,自动调整分辨率 var supportsImageRenderingP ...
分类:
其他好文 时间:
2021-05-24 07:24:58
阅读次数:
0
<div class="map3d-clear" title="清除全部点" onclick="celarPoint()"></div> .map3d-clear { border-radius: 5px; height: 32px; width: 32px; position: absolute; ...
分类:
其他好文 时间:
2021-05-24 07:24:11
阅读次数:
0
let obj = { a:1 b:2 } let obj2 = { ...obj c:3 d:4 } console.log(obj2)//1,2,3,4,对象展开 //常考题目 let a = 1 let b = 2 将两个值交换,过去是通过声明一个变量c来解决 现在可以通过解构变量 [a,b] ...
分类:
其他好文 时间:
2021-05-24 07:14:19
阅读次数:
0
1、阿里maven <repositories> <repository> <id>alimaven</id> <url>https://maven.aliyun.com/repository/public</url> </repository> </repositories> <pluginRep ...
分类:
其他好文 时间:
2021-05-24 06:23:30
阅读次数:
0
##什么是Pod ###Pod是Kubernetes中最小的单元,它由一组、一个或多个容器组成,每个Pod还包含了一个 Pause容器,Pause容器是 Pod的父容器,主要负责僵尸进程的回收管理,通过 Pause容器可以使同一个 Pod里面的多个容器共享存储、网络 、PID、IPC等 ##定义一个 ...
分类:
其他好文 时间:
2021-05-24 06:02:47
阅读次数:
0
子组件 child.vue <template> <div> <p>hello world</p> <button @click="handleClick">click</button> </div> </template> <script lang="ts"> import { defineCom ...
分类:
其他好文 时间:
2021-05-24 05:33:32
阅读次数:
0
Super关键字的三种用法 在子类的成员方法中,访问父类的成员变量。 public class Fu { int num = 10; } public class Zi extends Fu { int num = 20; public void methodZi() { System.out.pr ...
分类:
其他好文 时间:
2021-05-24 05:28:29
阅读次数:
0
常言道“小赌怡情”。这是一个很简单的小游戏:首先由计算机给出第一个整数;然后玩家下注赌第二个整数将会比第一个数大还是小;玩家下注 t 个筹码后,计算机给出第二个数。若玩家猜对了,则系统奖励玩家 t 个筹码;否则扣除玩家 t 个筹码。 注意:玩家下注的筹码数不能超过自己帐户上拥有的筹码数。当玩家输光了 ...
分类:
编程语言 时间:
2021-05-24 05:23:08
阅读次数:
0