返回顶部
扩大
缩小

Yeap

2022年4月2日

ORACLE 错误 ORA-01102: cannot mount database in EXCLUSIVE mode 的处理方法

摘要: ORACLE 错误 ORA-01102: cannot mount database in EXCLUSIVE mode 的处理方法 SQL> startup mount ORACLE instance started. Total System Global Area 608174080 byte 阅读全文

posted @ 2022-04-02 16:13 YP泡泡 阅读(549) 评论(0) 推荐(0)

2021年9月15日

【转】SpringBoot 如何进行对象复制,老鸟们都这么玩的!

摘要: 【转】SpringBoot 如何进行对象复制,老鸟们都这么玩的! 来聊聊在日常开发中如何优雅的实现对象复制。 首先我们看看为什么需要对象复制? 为什么需要对象复制 如上,是我们平时开发中最常见的三层MVC架构模型,编辑操作时Controller层接收到前端传来的DTO对象,在Service层需要将D 阅读全文

posted @ 2021-09-15 13:48 YP泡泡 阅读(525) 评论(0) 推荐(0)

2021年8月30日

获取数据,封装成对象的方法

摘要: @Override public List info(Long groundId) throws JsonProcessingException { // 根据场地id,获取所有场次对象 List groundTimeTables = groundTimeTableRepository.findBy 阅读全文

posted @ 2021-08-30 14:26 YP泡泡 阅读(183) 评论(0) 推荐(0)

2021年8月9日

Centos7连接外网设置(静态ip)

摘要: Centos7连接外网设置(静态ip) 网卡配置文件路径 cat /etc/sysconfig/network-scripts/ifcfg-ens33 修改ONBOOT值从no改为yes: 激活网卡 sed -i 's/ONBOOT=no/ONBOOT=yes/g' /etc/sysconfig/n 阅读全文

posted @ 2021-08-09 15:47 YP泡泡 阅读(452) 评论(0) 推荐(0)

2021年8月5日

Centos7 静默安装oracle11g (Linux服务器安装Oracle数据库)

摘要: Centos7静默安装Oracle11g 安装前的准备工作 1.下载Linux.x64_11gR2的安装包,并上传到虚拟机 linux.x64_11gR2_database_1of2.zip linux.x64_11gR2_database_2of2.zip 链接:https://pan.baidu 阅读全文

posted @ 2021-08-05 09:26 YP泡泡 阅读(205) 评论(0) 推荐(0)

2021年4月11日

mybatis-plus自动代码生成器的使用

摘要: Mybatis-Plus代码生成器 生成器的配置文件 <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </ 阅读全文

posted @ 2021-04-11 00:28 YP泡泡 阅读(134) 评论(0) 推荐(0)

2021年1月19日

SpringBoot小项目

摘要: 开发中使用的Pom依赖 <dependencies> <!--thymeleaf 引擎--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</art 阅读全文

posted @ 2021-01-19 19:43 YP泡泡 阅读(62) 评论(0) 推荐(0)

2021年1月12日

SSM整合

摘要: SSM整合 1.导入相关的pom依赖 <!--junit依赖--> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </depend 阅读全文

posted @ 2021-01-12 10:40 YP泡泡 阅读(64) 评论(0) 推荐(0)

2021年1月11日

Spring整合Mybatis

摘要: Spring整合Mybatis ​ 需要的导入的依赖: Mybatis <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.2</version> </dependency 阅读全文

posted @ 2021-01-11 19:42 YP泡泡 阅读(80) 评论(0) 推荐(0)

2021年1月7日

mybatis-03 多对一,一对多的处理

摘要: 多对一处理 举例: 对学生而言是多个学生对一个老师 对老师而言是一个老师关联多个学生 标签:适用于一对一和多对一 适用于多对多和一对多 思路: 编写实体类 @Data //GET,SET,ToString,有参,无参构造 public class Teacher{ private int id; p 阅读全文

posted @ 2021-01-07 09:59 YP泡泡 阅读(62) 评论(0) 推荐(0)

导航