- 浏览: 34965 次
- 性别:
- 来自: 北京
文章分类
最新评论
报错的信息:
liquibase.exception.LockException: Could not acquire change log lock.
说明:当微服务构建完成后,在resource中有个文件:
/src/main/resources/config/liquibase/changelog/00000000000000_initial_schema.xml
将内容更改为如下:
[code="ja<?xml version="1.0" encoding="utf-8"?>
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.5.xsd
http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
<property name="now" value="now()" dbms="mysql,h2"/>
<property name="now" value="current_timestamp" dbms="postgresql"/>
<property name="now" value="sysdate" dbms="oracle"/>
<property name="autoIncrement" value="true" dbms="mysql,h2,postgresql,oracle"/>
<changeSet id="00000000000000" author="jhipster" dbms="postgresql,oracle">
<createSequence sequenceName="hibernate_sequence" startValue="1000" incrementBy="1"/>
</changeSet>
<!--
JHipster core tables.
The initial schema has the '00000000000001' id, so that it is over-written if we re-generate it.
-->
<changeSet id="00000000000001" author="jhipster">
<createTable tableName="jhi_persistent_audit_event">
<column name="event_id" type="bigint" autoIncrement="${autoIncrement}">
<constraints primaryKey="true" nullable="false"/>
</column>
<column name="principal" type="varchar(50)">
<constraints nullable="false" />
</column>
<column name="event_date" type="timestamp"/>
<column name="event_type" type="varchar(255)"/>
</createTable>
<createTable tableName="jhi_persistent_audit_evt_data">
<column name="event_id" type="bigint">
<constraints nullable="false"/>
</column>
<column name="name" type="varchar(150)">
<constraints nullable="false"/>
</column>
<column name="value" type="varchar(255)"/>
</createTable>
<addPrimaryKey columnNames="event_id, name" tableName="jhi_persistent_audit_evt_data"/>
<createIndex indexName="idx_persistent_audit_event"
tableName="jhi_persistent_audit_event"
unique="false">
<column name="principal" type="varchar(50)"/>
<column name="event_date" type="timestamp"/>
</createIndex>
<createIndex indexName="idx_persistent_audit_evt_data"
tableName="jhi_persistent_audit_evt_data"
unique="false">
<column name="event_id" type="bigint"/>
</createIndex>
<addForeignKeyConstraint baseColumnNames="event_id"
baseTableName="jhi_persistent_audit_evt_data"
constraintName="fk_evt_pers_audit_evt_data"
referencedColumnNames="event_id"
referencedTableName="jhi_persistent_audit_event"/>
</changeSet>
</databaseChangeLog>
va"]
更改完后,将数据库中之前新建的表删除,然后重新打包微服务,启动即可!
liquibase.exception.LockException: Could not acquire change log lock.
说明:当微服务构建完成后,在resource中有个文件:
/src/main/resources/config/liquibase/changelog/00000000000000_initial_schema.xml
将内容更改为如下:
[code="ja<?xml version="1.0" encoding="utf-8"?>
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.5.xsd
http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
<property name="now" value="now()" dbms="mysql,h2"/>
<property name="now" value="current_timestamp" dbms="postgresql"/>
<property name="now" value="sysdate" dbms="oracle"/>
<property name="autoIncrement" value="true" dbms="mysql,h2,postgresql,oracle"/>
<changeSet id="00000000000000" author="jhipster" dbms="postgresql,oracle">
<createSequence sequenceName="hibernate_sequence" startValue="1000" incrementBy="1"/>
</changeSet>
<!--
JHipster core tables.
The initial schema has the '00000000000001' id, so that it is over-written if we re-generate it.
-->
<changeSet id="00000000000001" author="jhipster">
<createTable tableName="jhi_persistent_audit_event">
<column name="event_id" type="bigint" autoIncrement="${autoIncrement}">
<constraints primaryKey="true" nullable="false"/>
</column>
<column name="principal" type="varchar(50)">
<constraints nullable="false" />
</column>
<column name="event_date" type="timestamp"/>
<column name="event_type" type="varchar(255)"/>
</createTable>
<createTable tableName="jhi_persistent_audit_evt_data">
<column name="event_id" type="bigint">
<constraints nullable="false"/>
</column>
<column name="name" type="varchar(150)">
<constraints nullable="false"/>
</column>
<column name="value" type="varchar(255)"/>
</createTable>
<addPrimaryKey columnNames="event_id, name" tableName="jhi_persistent_audit_evt_data"/>
<createIndex indexName="idx_persistent_audit_event"
tableName="jhi_persistent_audit_event"
unique="false">
<column name="principal" type="varchar(50)"/>
<column name="event_date" type="timestamp"/>
</createIndex>
<createIndex indexName="idx_persistent_audit_evt_data"
tableName="jhi_persistent_audit_evt_data"
unique="false">
<column name="event_id" type="bigint"/>
</createIndex>
<addForeignKeyConstraint baseColumnNames="event_id"
baseTableName="jhi_persistent_audit_evt_data"
constraintName="fk_evt_pers_audit_evt_data"
referencedColumnNames="event_id"
referencedTableName="jhi_persistent_audit_event"/>
</changeSet>
</databaseChangeLog>
va"]
更改完后,将数据库中之前新建的表删除,然后重新打包微服务,启动即可!
发表评论
-
excel中插入图片
2020-09-25 11:03 3551、创建excel Workbook wb = ne ... -
阿里云OSS目录删除
2020-09-25 10:44 6411、列举指定目录下的文件 以下代码用于列举指定个数的文件 ... -
使用SAMBA 访问分享文件
2018-09-07 15:12 350/** * samba共享文件读取 ... -
使用RestTemplate将本地文件上传到服务器
2018-09-07 15:08 990/** * 将本地文件上传到文件系统 ... -
java 内存模型介绍
2018-08-23 10:22 376java 内存模型介绍 jvm 内存模型文 ... -
java 操作docker 容器
2018-08-21 14:53 1214java 操作docker 容器 github之dock ... -
java中获取用户的真实ip
2018-08-21 11:32 501获取登录用户的真实ip地址: /** * 用于 ... -
spring cloud 中使用zuul作为路由时上传文件名称乱码处理
2018-07-25 14:18 3021最近在做关于文件上传的接口,但是不管怎么处理,文件的名称总是乱 ... -
java连接ssh到服务器执行命令(免密码)
2018-07-09 16:00 4172今天在做不同服务器间,免密码执行curl 命令 ssh ... -
POI编辑存在的EXCEL文件
2018-07-06 09:34 986今天刚好在做对于一个存在的excel文件的编辑,使用到了POI ... -
interface和abstract类的异同
2018-05-07 16:34 8601、jdk 1.8 之后,interface中的方法可以有方法 ... -
java中自定义注解
2018-05-07 09:48 444java 自定义注解中的三个主要注解: @Target ... -
HashMap四种取值的效率问题
2017-12-29 15:37 3408日常开发中会经常用到map来存取值,但是对于HashMap中的 ... -
文章内容关键字或短语替换
2017-12-29 13:55 741分析的源文件内容: <fileNode access ... -
前端项目跨域问题
2017-03-29 17:55 538前端项目访问主干项目出现跨域问题的解决方案: 1、主干项目 ... -
tomcat中配置memcached,共享session
2017-03-28 15:49 439Memcached Session Manager 简称ms ... -
spring学习
2016-04-02 08:25 384一、spring 1、Spring是一个大容器,目的是为了简 ...
相关推荐
主要介绍了关于maven打包时的报错: Return code is: 501 , ReasonPhrase:HTTPS Required,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
* acquire:vt. 获得;习得 * accumulate:vt. 积累 * adaptation:n. 适应 * additive:a. 加色法的 * address:vt. 对...发表演说,对付;处理 * adjacent:a. 邻近的 * adjust:vt. 调节 * administration:n. ...
* acquire:v. 获得、取得、学到 * additional:a. 附加的、另外的 * adequate:a. 足够的、适当的、能胜任的 四、教育词汇 * admit:v. 承认、答应、允许 * admission:n. 许可、入会费、成认 * advance:n.v. ...
Python 条件同步的使用 在多线程编程中,数据同步是确保程序正确执行的关键。当多个线程需要访问并可能修改同一份共享数据时,如果没有适当的同步机制,可能会导致数据不一致或死锁等问题。Python 提供了 `...
在资源中,每个单词都提供了详细的解释和例句,以帮助学习者更好地理解单词的意思和使用方法。同时,资源还提供了音标信息,帮助学习者正确地发音和掌握单词的读音。 本资源是一个非常有价值的英语学习资源,适合...
【统一下单并支付接口(alipay.acquire.createandpay)】是支付宝提供的一个核心功能,用于商家集成支付宝支付系统,实现在线交易的过程。该接口适用于各种类型的商家,包括电商平台、线下零售店等,允许它们一次性...
如:Caused by: com.mchange.v2.resourcepool.CannotAcquireResourceException: A ResourcePool could not acquire a resource from its primary factory or source 使用fat jar 打包没问题: 1.解压后是一个../...
在英语学习过程中,掌握高频词汇是通过英语四级考试的关键之一。本文将详细介绍《2012新四级700高频词汇》中的一些核心词汇及其用法,帮助考生更好地理解和记忆这些词汇,从而提高英语水平。 #### 核心词汇详解 1....
【统一预下单接口(alipay.acquire.precreate)1】是支付宝提供的一个关键支付接口,主要用于商家在用户实际支付前进行预处理,以便于提高支付效率和用户体验。本文将详细阐述该接口的功能、适用对象、业务术语以及...
全面讲解Pom文件,全面讲解Pom文件,全面讲解Pom文件,全面讲解Pom文件,全面讲解Pom文件 全面讲解Pom文件,全面讲解Pom文件,全面讲解Pom文件,全面讲解Pom文件,全面讲解Pom文件
- **应用场景**:描述启动系统或设备使其处于工作状态时使用。 #### actually [ˈæktʃuəli] - **释义**:adv. 实际上, 事实上 - **例句**:Actually, I prefer the simpler version. - **应用场景**:强调事实与...
The teaching objectives are to cultivate students' ability to acquire and interpret geographic information, to apply geographic knowledge and skills, and to describe and explain geographic phenomena ...
收单关闭接口(alipay.acquire.close)1 收单关闭接口(alipay.acquire.close)是支付宝(中国)网络技术有限公司提供的一种服务接口,版本号为1.0。该接口主要用于关闭已经开启的收单交易,以下是对该接口的详细介绍。...
在使用ADSL(Asymmetric Digital Subscriber Line,非对称数字用户线路)进行网络连接时,可能会遇到各种错误代码,这些代码通常指示了连接失败的具体原因。以下是对部分常见ADSL连接错误代码的详细解析,旨在帮助...
- open the door to...: 为...打开大门 - take pleasure in: 在...中感到快乐 4. 苏格拉底与哲学: - 苏格拉底是古希腊哲学的先驱,以其在伦理学的贡献而著名。 - 苏格拉底式教学法(Socratic Method)通过提问...
- `service`: 服务,提供服务。 - `source`: 来源,出处。 - `resources`: 资源。 - `technique`: 技巧,技术。 - `entire`: 全部的,整体的。 - `conserve`: 保存,保护。 - `lean`: 斜靠,倾斜。 - `...
KEITHLEY 2400 是一款非常知名的电流源/电压源数字多用表(DMM),由Keithley公司生产,常用于精密测量任务。...通过软件的使用,不仅可以提升测试的精度,还能节省大量的人力和时间,进一步提高了测试工作的效率。