12 2021 档案

摘要:实现 WebMvcConfigurer#addCorsMappings 的方法 import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.ann 阅读全文
posted @ 2021-12-31 16:34 王^.^令 阅读(38) 评论(0) 推荐(0)
摘要:安装mysql [root@circle-coder data]# docker run -p 3306:3306 --name mysql \ > -v /usr/local/data/mysql/log:/var/log/mysql \ > -v /usr/local/data/mysql/da 阅读全文
posted @ 2021-12-30 08:29 王^.^令 阅读(132) 评论(0) 推荐(0)
摘要:import axios from "axios"; const request = axios.create({ baseURL: 'http://127.0.0.1:2021', timeout: 30000, headers: { 'Content-Type': 'application/js 阅读全文
posted @ 2021-12-26 11:38 王^.^令 阅读(23) 评论(0) 推荐(0)
摘要:git restore --staged 将文件从暂存区撤回工作区 git restore 将在工作区的文件撤销更改 sps-5130@sps-5130 MINGW64 /d/code/gitrep (master) $ echo "Hello Git" >> hello.txt sps-5130@ 阅读全文
posted @ 2021-12-20 09:21 王^.^令 阅读(660) 评论(0) 推荐(0)
摘要:建表语句 CREATE TABLE `demo` ( `id` int(11) NOT NULL AUTO_INCREMENT, `seller_address` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_I 阅读全文
posted @ 2021-12-03 15:19 王^.^令 阅读(126) 评论(0) 推荐(0)