gpt4 book ai didi

java - 为什么会出现 SQL 语法错误? - 预计 "identifier"?

转载 作者:行者123 更新时间:2023-12-05 04:27:54 27 4
gpt4 key购买 nike

我正在尝试完成有关 Spring Boot 的教程,我目前在 JPA 部分,遇到了一个我无法解决的问题。我目前所处的位置是我已经构建了实体,我已经获得了 DB(H2 数据库)所需的所有依赖项,我已经构建了 Controller 和服务,如果这对这里的任何事情都很重要,我得到一个错误当我运行我的应用程序时。

尝试运行这个:

insert into 'user'(id,name,birthdate)
values (1,sysdate(), 'Mason');

我得到的错误是这样的:

org.springframework.jdbc.datasource.init.ScriptStatementFailedException: Failed to execute SQL script statement #1 of URL [file:/C:/Users/jsalv/Desktop/tutorial/target/classes/data.sql]: insert into 'user'(id,name,birthdate) values (1,sysdate(), 'Mason'); nested exception is org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "insert into [*]'user'(id,name,birthdate) values (1,sysdate(), 'Mason')"; expected "identifier"; SQL statement:
insert into 'user'(id,name,birthdate) values (1,sysdate(), 'Mason') [42001-212]

这是我的 pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.in28minutes</groupId>
<artifactId>tutorial</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>tutorial</name>
<description>Some tutorial</description>
<properties>
<java.version>17</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-hateoas</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

</project>

这是我正在尝试与之合作的实体:

package com.in28minutes.tutorial.user;

import com.sun.istack.NotNull;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.validation.constraints.Past;
import javax.validation.constraints.Size;
import java.util.Date;
@Entity
public class User {
@Id
@GeneratedValue
private Integer id;
@Size(min = 2)
private String name;
@Past
private Date birthDate;

public User(Integer id, String name, Date birthDate) {
this.id = id;
this.name = name;
this.birthDate = birthDate;
}

public User() {

}

public Integer getId() {
return id;
}

public void setId(Integer id) {
this.id = id;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public Date getBirthDate() {
return birthDate;
}

public void setBirthDate(Date birthDate) {
this.birthDate = birthDate;
}

@Override
public String toString() {
return "User{" +
"id=" + id +
", name='" + name + '\'' +
", birthDate=" + birthDate +
'}';
}
}

我在这里研究了一些关于 SO 的解决方案,其中之一是将用户放在括号中,因为它是 SQL 特定的关键字,它不起作用,不断出现相同的错误。然后我稍微扩展了语法,看看这个 example .

我不明白我哪里出错了。

最佳答案

根据文档h2 documentation ,

user 是一个保留关键字,不能使用,除非用双引号括起来。

尝试

 insert into "user"(id,birthdate,name)
values (1,sysdate(), 'Mason');

但是我强烈建议将您的实体重命名为 sql 标准中不是保留关键字的名称。 H2 可能会用双引号避免这种情况,但 H2 主要用作测试数据库。您的真实数据库可能来自另一个供应商,但它再次出现故障,或者更糟糕的是,几年后您更换了数据库供应商,而下一个供应商不支持此保留关键字并采取了一些解决方法,然后您注定要进行重大迁移。

如果您坚持使用此解决方案,请先阅读 here还有here.

关于java - 为什么会出现 SQL 语法错误? - 预计 "identifier"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72742952/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com