摘要:
第一步:在github上创建repository 第二步:https为新建仓库的地址 第三步:echo "# Test" >> README.md 第四步:建立git仓库 git init 第五步:将项目的所有文件添加到仓库中 git add 第六步:git add README.md 第七步:gi 阅读全文
摘要:
钉钉扫码二维码登录OA系统 1.创建企业内部微应用 2.二维码前端实现及code获取 1).在页面中先引入如下js <script src="https://g.alicdn.com/dingding/dinglogin/0.0.5/ddLogin.js"></script> 2).在需要使用钉钉登 阅读全文
摘要:
1.使用new关键字 Person person=new Person(); 2.使用Class类的newInstance方法 a) Person ps=(Person) Class.forName("com.springioc.myioc.Person").newInstance(); 需要捕获C 阅读全文