摘要:
mybatis 文档:https://mybatis.org/mybatis-3/zh/ ##maven:pom.xml <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <vers 阅读全文
摘要:
1、创建一个new SpringApplication() 2、解析XMl文件 3、创建一个BeanFactory 4、加载Bean定义BeanDefinitionMap 5、调用bean工厂的后置处理器 可以修改beandefinition 6、开始预生产bean 判断是不是接口 单例 懒加载 阅读全文
摘要:
const nums=[1,3,5,11] let [a,b]=nums const user={name:"howhy",age:22} let {name,age}=user let arr1=[1,3,5] let arr2=[...arr1,2,4,6] 阅读全文
摘要:
npm node package manager 安装nodejs时自带的 npm help install(list) npm config get|set registry npm install jquery@3.0.0 -g npm update jquery npm list -g npm 阅读全文
摘要:
规范url:https://standardjs.com/readme-zhcn.html 定义变量 等号两边有空格 定义变量和方法必须使用 定义方法 方法名与括号 括号与大括号中间都要有空格 定义字符串用单引号 关键字 if 与括号间要有空格 用 代替== 逗号后台要有空格 不允许有多行空行 阅读全文
摘要:
1、首先下载 https://developer.android.google.cn/studio?hl=zh_cn wget https://dl.google.com/android/repository/commandlinetools-linux-6609375_latest.zip?hl= 阅读全文
摘要:
package com.example.appdemoimport android.app.ActionBarimport android.content.Intentimport android.graphics.Colorimport androidx.appcompat.app.AppComp 阅读全文
摘要:
将pip源更换到国内镜像用pip管理工具安装库文件时,默认使用国外的源文件,因此在国内的下载速度会比较慢,可能只有50KB/s。幸好,国内的一些顶级科研机构已经给我们准备好了各种镜像,下载速度可达2MB/s。其中,比较常用的国内镜像包括: (1)阿里云 http://mirrors.aliyun.c 阅读全文
摘要:
类选择器 id选择器 元素选择器 伪类选择器 属性选择器 结构性选择器 逗号分隔的是或选择 空格分隔的是 层级选择 >分隔是父子级 + 紧挨着下个的兄弟元素 属性选择器 *[attr] 选择包含有attr属性的所有元素 [attr='val'] 选择包含有attr属性并且其属性值为val的所有元素 阅读全文
摘要:
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>< 阅读全文