Alex_TD

2021年10月26日

程序是怎么运行的?

摘要: 6个知识点 1.cpu包括运算器 寄存器 控制器 。 北桥集成进了CPU 主要包括 内存管理器 2.内存 内存控制器 3.硬盘 硬盘控制器 4.显卡 显存控制器 显存数模转换器 5.键盘 按键中断请求 通过总线进入CPU 。。。。 6.CPU针脚功能包括数据总线 地址总线 控制总线 。 数据总线定义 阅读全文

posted @ 2021-10-26 14:31 Alex_TD 阅读(56) 评论(0) 推荐(0) 编辑

2021年5月10日

springboot mybatis 映射器配置

摘要: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > < 阅读全文

posted @ 2021-05-10 19:08 Alex_TD 阅读(86) 评论(0) 推荐(0) 编辑
springboot mybatis配置

摘要: <?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dt 阅读全文

posted @ 2021-05-10 19:07 Alex_TD 阅读(56) 评论(0) 推荐(0) 编辑
springboot application.properties(数据库jdbc mybatis redis )

摘要: server.port=9090 spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver spring.datasource.url=jdbc:mysql://localhost:3306/myapp?useSSL=true&useUni 阅读全文

posted @ 2021-05-10 19:06 Alex_TD 阅读(93) 评论(0) 推荐(0) 编辑
springboot 2.4.5 redis 配置类+缓存

摘要: package com.anquan.Configeration; import com.fasterxml.jackson.annotation.JsonAutoDetect; import com.fasterxml.jackson.annotation.PropertyAccessor; im 阅读全文

posted @ 2021-05-10 19:04 Alex_TD 阅读(424) 评论(0) 推荐(0) 编辑

2021年1月29日

华为ensp模拟器 提示40 错误问题

摘要: .virtualbox5.2.26 Wireshark Version 3.0.0 ensp最新 全部都已管理员运行模式 启动AR/WLAN设备时,提示“…错误代码40…”。 先按官方解决,还不行就看看你是否开启了windows自带的hyper-V 虚拟机,先卸载了,或者关闭 关闭命令(cmd管理员 阅读全文

posted @ 2021-01-29 10:01 Alex_TD 阅读(867) 评论(0) 推荐(0) 编辑

2021年1月3日

Nodejs

摘要: Nodejs 更改 库安装位置: npm config set prefix "D:\node_globals" npm config set cache "D:\node_globals" 系统环境变量:NODE_PATH ="D:\node_globals" path路径添加NODE_PATH 阅读全文

posted @ 2021-01-03 19:21 Alex_TD 阅读(40) 评论(0) 推荐(0) 编辑

2020年12月8日

Python PermissionError:[Errno 13]权限被拒绝 [winerr 5]

摘要: 安装目录自建,添加本用户的完全控制权限。那个文件夹没权限修改那个。 以管理员方式运行cmd 命令行安装pip install xxx xxx模块名 pip install --user --upgrade pip 模块没了: python -m ensurepip 重新安装自带pip版本 pytho 阅读全文

posted @ 2020-12-08 11:08 Alex_TD 阅读(492) 评论(0) 推荐(0) 编辑

2020年11月15日

Window10的linux docker 安装(wsl版本)

摘要: 1. apt install docker.io 2.安装docker-desktop 打开Expose daemon on tcp://localhost:2375 without TLS 配置 3.docker pull mysql 等等 阅读全文

posted @ 2020-11-15 16:00 Alex_TD 阅读(227) 评论(0) 推荐(0) 编辑

2020年11月6日

window10的 Linux 子系统ssh配置

摘要: 1.更新软件管理器 sudo apt update 2.安装ssh openssh-server apt install ssh openssh-serverssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_keyssh-keygen -t rsa -f /etc 阅读全文

posted @ 2020-11-06 20:43 Alex_TD 阅读(369) 评论(0) 推荐(0) 编辑