刘望舒 刘望舒
3年前
Android深入四大组件(一)应用程序启动过程(后篇)
Android框架层Android深入四大组件categories:Android框架层本文首发于微信公众号「刘望舒」1.ActivityManageService到ApplicationThread的调用流程AMS的startActivity方法中return了startActivityAsUser方法:<!moreframeworks/base/s
不是海碗 不是海碗
1年前
工作中常用的免费API,赶紧收藏起来~
在工作中,我们为了提升自己的开发工作效率,都会使用已经开发好的API接口,接入即可使用。今天我就为大家整理了工作中常用的免费API,赶紧收藏起来吧~
Wesley13 Wesley13
3年前
vscode的eslint插件不起作用
最近在用vue进行开发,但是vsCode中的eslint插件装上之后不起作用1.vsCode打开“设置”,选择"settings.json"!(https://img2018.cnblogs.com/blog/921637/201905/921637201905161657075401304630667.png)2.输入一段脚本
Stella981 Stella981
3年前
Linux使用yum命令安装软件时,连接不了网路报错:ERROR 6
错误:!(https://oscimg.oschina.net/oscnet/bd3ee6de36ca5d1542351402ab17d60283e.png)解决方案:在/etc/sysconfig/networkscripts/ifcfgeth0文件中配置DNS信息:vim/etc/sysconfig/networksc
Stella981 Stella981
3年前
Android常见错误
1、Unabletoresolvetarget'android2'安装低版本的api,再default.properties这个文件中把targetandroid2改成targetandroid7终于就没有问题了。2、InvalidstarttagLinearLayoutmain.xml放错文件夹了,应该在\\res\
Stella981 Stella981
3年前
PHP Array 函数
PHParray\_slice()函数PHPArray函数(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fwww.w3school.com.cn%2Fphp%2Fphp_ref_array.asp)定义和用法array\_slice()函数在数组中
Wesley13 Wesley13
3年前
Spring学习详解(1)——Spring入门详解
一:spring的基本用法:1,关于spring容器:spring容器是Spring的核心,该容器负责管理spring中的java组件,ApplicationContextctx newClassPathXmlApplicationContext("bean.xml");//这种方式实例化容器,容器会自动预初始化所有Bean实例
Stella981 Stella981
3年前
Database schema
Jira|事务与项目跟踪软件,敏捷团队的首先软件开发工具。Database–Changehistory    Jira将每个Issue的变更历史记录存储在changegroup和changeitem表中。每条changegroup表记录,描述了它关联的Issue、变更
Stella981 Stella981
3年前
Spring Security使用详解8(配置多个HttpSecurity)
在之前的文章中我们都只配置一个HttpSecurity,如果业务比较复杂,我们也可以配置多个HttpSecurity,实现对WebSecurityConfigurerAdapter的多次扩展。八、配置多个HttpSecurity1、样例代码(1)配置多个HttpSecurity时,MultiHttpSecurity
风花雪月 风花雪月
2年前
django登录状态保持(自学记录)
1、网上搜索,可以用django自带的login()。但是,自己使用都活报错“'xxx'objecthasnoattribute'meta'”。2、使用session来保存用户登录状态。能使用,但是没有找到设置保持时长的方法。编写views中login的函