领域事件 由于在DDD中采用了“设计小聚合”的原则,因此避免了领域模型的相互关联,从而避免了在应用演进中形成“大泥球”(Big Ball of Mud),也因为上述的原因,本书将不讲解@OneToMany、@ManyToMany等关联注解。聚合之间在没有了关联关系后,聚合之间的数据通讯通过领域事件来 ...
分类:
编程语言 时间:
2020-10-14 20:38:48
阅读次数:
46
import axios from 'axios' import { MessageBox, Message } from 'element-ui' import store from '@/store' import { getToken } from '@/utils/auth' // crea ...
分类:
移动开发 时间:
2020-10-13 17:31:29
阅读次数:
30
package cn.hopetesting.com.test;import cn.hopetesting.com.domain.User;import com.fasterxml.jackson.core.JsonProcessingException;import com.fasterxml.j ...
分类:
编程语言 时间:
2020-10-12 20:48:41
阅读次数:
70
Centos7 加入 Windows DC域控 配置操作指引
环境准备关闭禁用防火墙NetworkManageriptablessystemctlstopfirewalld&&systemctldisablefirewalldsystemctlstopNetworkManager&&systemctldisableNetworkManagersystemctlstopiptables&&systemctldis
分类:
其他好文 时间:
2020-10-05 21:28:30
阅读次数:
27
参考:https://zhuanlan.zhihu.com/p/84346003(OK) getsebool -a | grep samba 然后发现输入的内容中有这两行 samba_enable_home_dirs --> off samba_export_all_rw --> off 终端继续输 ...
分类:
系统相关 时间:
2020-09-23 23:41:44
阅读次数:
62
生产环境使用samba做文件服务器,很快磁盘爆满了。 检查发现还有一块500G的磁盘没用,暴殄天物啊。 马上挂载起来: 开始挂载fdisk /dev/sdb 格式化刚划分的磁盘,格式成ext4格式 mkfs.ext4 /dev/vdb 创建需要挂载的目录gps mkdir /gps 写入fstabl ...
分类:
Web程序 时间:
2020-09-21 11:35:21
阅读次数:
65
首先自定义Jpa接口类型需要继承接口JpaSpecificationExecutor<T> 下面是实现多条件查询 + 分页 + 排序的代码 导入的的相关类 import org.springframework.data.domain.PageRequest; import org.springfra ...
分类:
编程语言 时间:
2020-09-18 12:29:40
阅读次数:
56