刘望舒 刘望舒
4年前
Android深入四大组件(一)应用程序启动过程(后篇)
Android框架层Android深入四大组件categories:Android框架层本文首发于微信公众号「刘望舒」1.ActivityManageService到ApplicationThread的调用流程AMS的startActivity方法中return了startActivityAsUser方法:<!moreframeworks/base/s
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年前
Maven项目环境搭建(Maven + Spring + IBatis)步骤
准备步骤‍1\.安装Maven,下载解压即可。官网下载(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fmaven.apache.org%2Fdownload.cgi)‍2\.修改maven\_home/conf/settings.xml中的<localReposito
Stella981 Stella981
3年前
Android Drawable完全解析(一):Drawable源码分析(上)
AndroidDrawable完全解析(一):Drawable源码分析(上)(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fwww.jianshu.com%2Fp%2F384a70897ba6)AndroidDrawable完全解析(一):Drawable源码分析(中)(htt
Stella981 Stella981
3年前
Spring Security使用详解8(配置多个HttpSecurity)
在之前的文章中我们都只配置一个HttpSecurity,如果业务比较复杂,我们也可以配置多个HttpSecurity,实现对WebSecurityConfigurerAdapter的多次扩展。八、配置多个HttpSecurity1、样例代码(1)配置多个HttpSecurity时,MultiHttpSecurity