随笔分类 - 学习
摘要:从官网下载Editor.md(https://pandao.github.io/editor.md/)压缩包,仿照里面的案例进行修改和使用。 数据库设计 1 CREATE TABLE `article`( 2 `id` INT(10) NOT NULL AUTO_INCREMENT COMMENT
阅读全文
摘要:一、可以成功登录到MySQL中 1 使用具有数据库管理权限的用户登陆MySQL,如root用户$ mysql -uroot -p'root_password' 2 在mysql中创建用户名和密码mysql> create user 'new_username'@'%' IDENTIFIED BY '
阅读全文
摘要:一、pom.xml相关依赖坐标 1 <dependencies> 2 <!--Junit--> 3 <dependency> 4 <groupId>junit</groupId> 5 <artifactId>junit</artifactId> 6 <version>4.12</version> 7
阅读全文
摘要:1.分析目标,获取抓取策略 1)入口页 记录该网址:https://baike.baidu.com/item/Python/407313?fr=aladdin 2)URL格式 <a href="/item/%E5%8D%A1%E8%80%90%E5%9F%BA%E6%A2%85%E9%9A%86%E
阅读全文
摘要:1、修改代码生成配置 单应用编辑 resources 目录下的 application.yml多模块编辑 ruoyi-generator 中的 resources 目录下的 generator.ymlauthor: # 开发者姓名,生成到类注释上packageName: # 默认生成包路径autoR
阅读全文