码迷,mamicode.com
首页 >  
搜索关键字:protected scope    ( 9070个结果
springboot发布war包部署
springboot发布war包部署 1. 程序入口类需继承 SpringBootServletInitializer 类 2. 程序入口复写以下方法 @Override protected SpringApplicationBuilder configure(SpringApplicationBu ...
分类:编程语言   时间:2020-11-18 13:23:04    阅读次数:20
Element-UI中Drawer抽屉去除标题自带黑色边框
当点击事件drawer==true时,抽匣回打开 这时抽匣的标题会出现一个难看的蓝色边框,一会就会消失,但是好丑,所以要去掉它 解决方法 /deep/ :focus { outline: 0; } vue组件中,在style设置为scoped的时候,里面在写样式对子组件是不生效的,如果想让某些样式对 ...
分类:其他好文   时间:2020-11-18 12:39:43    阅读次数:5
Spring Security 实战干货:OAuth2第三方授权初体验
1. 前言 Spring Security实战干货系列 现在很多项目都有第三方登录或者第三方授权的需求,而最成熟的方案就是OAuth2.0授权协议。Spring Security也整合了OAuth2.0,在目前最新的Spring Security 5中整合了OAuth2.0的客户端,我们可以很方便的 ...
分类:编程语言   时间:2020-11-16 12:57:37    阅读次数:15
LR之Oracle 2tier协议录制Oracle脚本
在一次测试中,需用到sql去查询Oracle数据,并去使用改数据时,查阅各种资料终于实现LoadRunner对Oracle数据库进行操作,分享给大家,也与大家共同进步~ 同时也可用Loadrunner进行oracle数据库压力测试的时候,可以选择oracle 2tier协议进行录制。 一、如果选择录 ...
分类:数据库   时间:2020-11-12 13:59:29    阅读次数:13
自定义 403 错误页面
开始吧 1、 准备 403 错误页面 <div class="layui-body"> <!-- 内容主体区域 --> <div style="padding: 15px;"> <h1>非常抱歉!您没有访问这个功能的权限!(回家照照镜子)</h1> <h2>${message }</h2> </di ...
分类:其他好文   时间:2020-11-08 17:20:06    阅读次数:22
放行首页和静态资源
开始吧 1、 在自己的配置类中重写父类的 configure(HttpSecuritysecurity)方法。 SpringSecurityConfig //重写configure方法进行配置 @Override protected void configure(HttpSecurity httpS ...
分类:其他好文   时间:2020-11-07 17:35:26    阅读次数:23
SpringMVC常用注解
dao @Repository --写在dao层 service @Service --写在service层 controller @Controller --写在controller层 @Scope --写在多人访问controller上 属性注入 @Autowired --写在需要注入的属性上 ...
分类:编程语言   时间:2020-11-07 15:46:00    阅读次数:20
jwt
class BaseApi extends Controller { protected $userId = 0; protected $userName = ''; protected $noLoginAction = []; protected $endTIme = 30000000; publ ...
分类:其他好文   时间:2020-11-06 02:20:52    阅读次数:14
vue3的新写法和特性整理——六、插槽的使用
1、子组件暴露插槽的写法 <template> <div class="hello"> <h1>子组件</h1> <h1>↓↓↓以下是默认插槽内容↓↓↓</h1> <slot :scope="sexEn1"></slot> <h1>↑↑↑以上是插槽内容↑↑↑</h1> <br /> <div>{{s ...
分类:其他好文   时间:2020-11-04 18:41:55    阅读次数:20
cpu架构-x86
IBM8086架构 8个16位通用寄存器(CPU 内部的数据单元) 其中的4个AX、BX、CX、DX 为可以分成两个 8 位的寄存器来使用,分别是 AH、AL、BH、BL、CH、CL、DH、DL。 其中 H 就是 High(高位),L 就是 Low(低位)的意思。 IP 寄存器 指令指针寄存器(In ...
分类:其他好文   时间:2020-11-04 17:33:30    阅读次数:17
9070条   上一页 1 ... 11 12 13 14 15 ... 907 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!