我正在尝试在我的Windows工作站上设置git-tf桥.当我尝试执行其中一个命令时,它总是显示消息:
无法找到所需的JAR:C:\ my\path\to\git-tf/lib/com.microsoft.gittf.client.clc-*jar不存在.
问题是从\的路径中间的斜线更改更改为/.
提前致谢.
当我尝试启动我的spring boot应用程序时,我得到此警告:
2018-09-30 07:34:23.097 INFO 59360 --- [ main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL5Dialect
Hibernate: create table social_link (author_username varchar(255) not null, type varchar(255) not null, value varchar(255), primary key (author_username, type)) engine=MyISAM
2018-09-30 07:34:24.067 WARN 59360 --- [ main] o.h.t.s.i.ExceptionHandlerLoggedImpl : GenerationTarget encountered exception accepting command : Error executing DDL via JDBC Statement
Run Code Online (Sandbox Code Playgroud)
奇怪的是,我可以通过SQL工作台执行SQL语句而不会出现问题,然后一切正常。这是负责该表的实体:
@Entity
public class SocialLink {
@EmbeddedId
private SocialLinkKeyEmbeddable id = new SocialLinkKeyEmbeddable();
private String value;
@ManyToOne
@MapsId("author_username")
@JoinColumns({
@JoinColumn(name="author_username", referencedColumnName="author_username")
})
private Author author; …Run Code Online (Sandbox Code Playgroud)