51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#ATI
Android中Application类用法
Application类Application和Activity,Service一样是Android框架的一个系统组件,当Android程序启动时系统会创建一个Application对象,用来存储系统的一些信息。Android系统自动会为每个程序运行时创建一个Application类的对象且只创建一个,所以Applic...
代码星球
·
2020-03-31
Android
Application
用法
tp5分页注意,分页生成的ul class是pagination,有些模板可能将pagination定义为display:none
今天在调用分页时总是无法显示,查看网页源代码是正常的,后来发现是在css文件里将pagination定义为display:none,所以无法显示...
代码星球
·
2020-03-28
分页
pagination
tp5
注意
生成
记录一下今天犯得错误,public static function init()写成了public function initialize()
tp5模型事件是放在函数publicstaticfunctioninit()而我写成了初始化函数,编辑器生成的publicfunctioninitialize()开始时用着没出问题,但是在删除操作之前前我要删除上传的图片时,在执行unlink时总是找不到图片,因为初始化函数已经提前执行了一遍,所以二次执行时找不到图片地...
代码星球
·
2020-03-28
public
function
记录
一下
今天
深度解析MySQL启动时报“The server quit without updating PID file”错误的原因
很多童鞋在启动mysql的时候,碰到过这个错误,首先,澄清一点,出现这个错误的前提是:通过服务脚本来启动mysql。通过mysqld_safe或mysqld启动mysql实例并不会报这个错误。那么,出现这个错误的原因具体是什么呢?哈哈,对分析过程不care的童鞋可直接跳到文末的总结部分~总结 下面,来分析下m...
IT猿
·
2020-03-28
深度
解析
MySQL
启动
时报
css position: absolute、relative详解
CSS2.0HandBook上的解释: 设置此属性值为absolute会将对象拖离出正常的文档流绝对定位而不考虑它周围内容的布局。假如其他具有不同z-index属性的对象已经占据了给定的位置,他们之间不会相互影响,而会在同一位置层叠。此时对象不具有外补丁(margin),但仍有内补丁(padding)和边框(...
IT猿
·
2020-03-28
css
position
absolute
relative
详解
SpringSecurity-UsernamePasswordAuthenticationFilter的作用
UsernamePasswordAuthenticationFilter应该是我们最关注的Filter,因为它实现了我们最常用的基于用户名和密码的认证逻辑。先看一下一个常用的form-login配置:1<form-loginlogin-page="/login"2username-parameter="ssoId...
IT猿
·
2020-03-28
SpringSecurity-UsernamePasswordAuthenticationFilter
作用
idea中mybatis generator自动生成代码配置 数据库是sqlserver
好长时间没有写博客了,最近公司要用java语言,开始学习java,属于初学者,今天主要记录一下mybatisgenerator自动生成代码,首先在如下图的目录中新建两个文件,如下图 generatorConfig.xmland jdbc.properties都要放在resource根目录下具体gen...
IT猿
·
2020-03-28
idea
mybatis
generator
自动生成
代码
SpringBoot+Mybatis+ Druid+PageHelper 实现多数据源并分页
本篇文章主要讲述的是SpringBoot整合Mybatis、Druid和PageHelper 并实现多数据源和分页。其中SpringBoot整合Mybatis这块,在之前的的一篇文章中已经讲述了,这里就不过多说明了。重点是讲述在多数据源下的如何配置使用Druid和PageHelper。在使用Druid之前,先...
IT猿
·
2020-03-28
SpringBoot+Mybatis+
Druid+PageHelper
实现
数据源
分页
通过Application传递数据代码
使用Application传递数据步骤如下:创建新class,取名MyApp,继承android.app.Application父类,并在MyApp中定义需要保存的属性 在整个Android程序中,有时需要保存某些全局的数据(如:用户信息),方便在程序的任何地方调用。在Activity...
IT猿
·
2020-03-27
通过
Application
传递
数据
代码
相对定位relative与绝对定位absolute
relative:相对定位,并没有脱离原来文档流,依然在原来的位置上,可以通过设置left,top,来设置自己的偏移量,但是它依然占据自己原来的位置,偏移的位置会遮盖其他的元素absolute:绝对定位,脱离原来的文档流,不在原来的位置上了,不占用父元素的空间,设置偏移量对其他的元素没有影响...
IT猿
·
2020-03-27
定位
相对
relative
绝对
absolute
[LeetCode] Longest Substring Without Repeating Characters (LinkedHashSet的妙用)
Givenastring,findthelengthofthelongestsubstringwithoutrepeatingcharacters.Forexample,thelongestsubstringwithoutrepeatinglettersfor"abcabcbb"is"ab...
IT猿
·
2020-03-27
LeetCode
Longest
Substring
Without
Repeating
Connection for controluser as defined in your configuration failed.
在mysql中使用事件调度器(计划任务),语句写好了,运行也ok,可是却没有预期的结果。网上总结了非常多计划任务失效的原因。没有一种适合我。在phpmyadmin中打开事件表,发现以下一串红色的提示:Connectionforcontroluserasdefinedinyourconfigurationfailed.把...
IT猿
·
2020-03-27
Connection
for
controluser
as
defined
This request has been blocked because sensitive information could be disclosed to third party web sites when this is used in a GET request.
2020-03-1611:04:35,168ERROR[13]:System.InvalidOperationException:Thisrequesthasbeenblockedbecausesensitiveinformationcouldbedisclosedtothirdpartywebsiteswhenthi...
IT猿
·
2020-03-27
This
request
has
been
blocked
HOW TO: Configure Internet Information Services Web Authentication in Windows Server 2003
HowtoConfigureIISWebSiteAuthenticationUseanadministrativeaccounttologontotheWebserver.StartIISManageroropentheIISsnap-in.ExpandServer_name,whereServer_nameisthe...
IT猿
·
2020-03-27
HOW
TO
Configure
Internet
Information
How can I manually create a authentication cookie instead of the default method?
Hereyougo.ASP.NETtakescareofthisforyouwhenyouusethehigherlevelmethodsbuiltintoFormsAuthentication,butatthelowlevelthisisrequiredtocreateanauthenticationcookie.&...
IT猿
·
2020-03-27
How
can
manually
create
authentication
首页
上一页
...
291
292
293
294
295
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他