一、先讲观察者使用流程 1.先创建一个 App\Observers 文件夹, 2.然后创建想要操作的模型对应的 observer,比如说创建一个 AgentLogsObservers 3.然后到 AppServiceProvider 的 boot 方法当中进行注册,也可以是其他的 ServicePr ...
分类:
其他好文 时间:
2021-01-22 11:41:58
阅读次数:
0
两种做法 修改Appcation.java文件 package com.techny.lianmai; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.S ...
分类:
编程语言 时间:
2021-01-20 12:07:41
阅读次数:
0
1、数据库准备 1、192.168.8.162 test1主 2、192.168.8.134 test1从 3、192.168.8.176 test1从 4、192.168.8.162 test2主 5、192.168.8.134 test2从 6、192.168.8.176 test2从 2、准备 ...
分类:
数据库 时间:
2021-01-20 11:42:43
阅读次数:
0
转自:https://www.pianshen.com/article/58601308015/ springboot配置MVC的官网信息:https://docs.spring.io/spring-boot/docs/2.2.1.RELEASE/reference/htmlsingle/#boot ...
分类:
编程语言 时间:
2021-01-19 12:26:09
阅读次数:
0
1、什么是类加载器 类加载器负责加载class文件,class文件在文件的开头有特定的文件标识,将class文件字节码内容加载到内存中,并将这些内容转换成方法区中的运行时数据结构。 Class Loader只负责class文件的加载,至于他是否可以运行,则由Execution Engine决定。 并 ...
分类:
其他好文 时间:
2021-01-19 12:17:55
阅读次数:
0
starter 是 spring-boot 的项目,包含了spring-data-jpa和一些其他依赖用于spring-boot项目 data-jpa 是 spring-data 的项目,就是本体,用于任何项目 ...
分类:
编程语言 时间:
2021-01-19 11:39:40
阅读次数:
0
首选,确认是用root用户登录系统的。 输入命令: id ,查看登录用户信息。3若修改root自己的密码,直接输入 passwd . 输入两遍,新密码即可。 4若修改其他用户,如oracle 的密码,可直接输入passwd oracle. 输入两遍性新密码即可。 5这样就修改成功了。 centos7 ...
分类:
系统相关 时间:
2021-01-18 11:27:39
阅读次数:
0
新建项目 选择Spring Initializer 填写和选择相关配置 依赖选择 Spring boot devtools,热部署工具 Spring configuration processor, 配置处理器,Spring常用yml配置文件,当碰到xml或者properties时,需要解析,就用到 ...
分类:
编程语言 时间:
2021-01-18 10:42:18
阅读次数:
0
引入pom文件<dependency> <groupId>org.redisson</groupId> <artifactId>redisson-spring-boot-starter</artifactId> <version>3.13.4</version></dependency> publi ...
分类:
其他好文 时间:
2021-01-15 11:53:50
阅读次数:
0
运行展示 正题 Spring boot :2.1.5RELEASE ;数据库(Mysql、Oracle);Mybatis;阿里云的连接池 : Druid ; 步骤 1.POM依赖 <!-- MyBatis --> <dependency> <groupId>org.mybatis.spring.bo ...
分类:
数据库 时间:
2021-01-15 11:48:59
阅读次数:
0