AI端侧应用、氛围编程 JDL-Studio是jhipster的数据建模工具 #ReactJS教程 #SpringBoot教程 #ER数据建模教程 #JHipster 2018-10-23 1 banq 通过ER建模可以实现ReactJS + Spring Boot架构的代码自动生成。生成.jh文件导入Jhipster模板即可,.jh文本如下:实体模型: entity Region { regionName String}entity Country { countryName String}// an ignored comment/** not an ignored comment */entity Location { streetAddress String, postalCode String, city String, stateProvince String}entity Department { departmentName String required} 关系模型: relationship OneToOne { Country{region} to Region}relationship OneToOne { Location{country} to Country}relationship OneToOne { Department{location} to Location}