上一页 1 2 3 4 5 6 ··· 58 下一页
摘要: 1.效果图 上面的页面,有两个功能要点:时间线和分页 Blog.vue <template> <div> <Header></Header> <div class="block"> <el-timeline> <el-timeline-item :timestamp="blog.created" p 阅读全文
posted @ 2021-06-10 11:11 GumpYan 阅读(307) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-06-09 17:21 GumpYan 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1.下载安装jdk https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html 下载后成功后,双击图标即可安装,安装过程中直接下一步即可,也可修改安装目录,本例安装目录为: 在"系统变量"中设置3项属性,JAV 阅读全文
posted @ 2021-05-23 11:41 GumpYan 阅读(7933) 评论(0) 推荐(0) 编辑
摘要: 1. 下载 1.1 安装Linux,我们需要一个虚拟机,为了安装虚拟环境:VMware或者Virtual Box(采用VMware) https://www.vmware.com/cn/try-vmware.html 下载了VMware Workstation 15.5.7 Player 版本 1. 阅读全文
posted @ 2021-05-23 09:06 GumpYan 阅读(569) 评论(0) 推荐(0) 编辑
摘要: 1.注解方式整合mybatis 1.1 创建District的Mapper接口 public interface DistrictMapper { @Select("select * from district") List<District> findAll(); @Select("select 阅读全文
posted @ 2021-05-10 20:06 GumpYan 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 1.导入依赖 在pom.xml中添加依赖 <!-- mysql驱动--> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> <!-- druid连接--> 阅读全文
posted @ 2021-05-10 19:12 GumpYan 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 1.@SpringBootApplication概述 @SpringBootApplication是一个组合注解 (1)@SpringBootApplication就是@Configuration注解,代表启动类就是配置类 (2)@EnableAutoConfiguration帮你实现自动装配,Sp 阅读全文
posted @ 2021-05-10 10:47 GumpYan 阅读(517) 评论(0) 推荐(0) 编辑
摘要: 1.用例图(UseCase) 展示系统的核心功能及其交互的用户 用户被称之为“活动者”(Actor),用例使用椭圆表示 为简化建模过程,用例图可标注优先级 2.类图 类图: 类图是面向对象系统建模中最常用和最重要的图,是定义其它图的基础。类图主要是用来显示系统中的类、接口以及它们之间的静态结构和关系 阅读全文
posted @ 2021-05-06 11:15 GumpYan 阅读(2322) 评论(0) 推荐(0) 编辑
摘要: 1.OOP主要特征 2.关联 3.聚合 如,controller中的service 4.组合 5.域模型 域模型是面向对象的。在面向对象术语中域模型也可称为设计模型 域模型由以下内容组成: 具有状态和行为的域对象 域对象之间的关系 关联(association) 依赖(dependency) 聚集( 阅读全文
posted @ 2021-05-06 10:25 GumpYan 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 1.标签的概念 像其他版本控制系统(VCS)一样,Git可以给历史中的某一个提交打上标签,以示重要。比较有代表性的是人们会使用这个功能来标记发布结点(v1.0,v1.2等)。标签指的是某个分支某个特定时间的状态。通过标签,可以很方便的切换到标记时的状态。 2.创建新标签 新建一个tag git ta 阅读全文
posted @ 2021-04-27 10:35 GumpYan 阅读(118) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 58 下一页