我正在尝试向现有表添加新列。预期为UNKNOWN,而不是所有行都获得null值。请帮忙。这是我的代码。
Grade.kt
package com.example.demo.model
import javax.persistence.*
@Entity
class Grade {
@GeneratedValue
@Id
var id: Long? = null
var grade: Int? = null
var name: String? = null
var enabled: Boolean = false
@Enumerated(EnumType.STRING)
var studentStatus: StudentStatus = StudentStatus.UNKNOWN
}
首先,我创建了没有StudentStatus的表。现在,我想将StudentStatus var添加到表中,我发现我必须在Gradle.kt中将其声明为StudentStatus.UNKNOW,但是它将变为空。
StudentStatus.kt
package com.example.demo.model
enum class StudentStatus{
PASS,
FAIL,
UNKNOWN
}
GradleRepository.kt
package com.example.demo.repository
import com.example.demo.model.Grade
import org.springframework.data.repository.CrudRepository
interface GradeRepository : CrudRepository<Grade, Long>
Build.gradle
buildscript {
ext {
kotlinVersion = '1.2.71'
springBootVersion = '2.1.1.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}")
classpath("org.jetbrains.kotlin:kotlin-allopen:${kotlinVersion}")
classpath("org.jetbrains.kotlin:kotlin-noarg:${kotlinVersion}")
}
}
apply plugin: 'kotlin'
apply plugin: 'kotlin-spring'
apply plugin: 'kotlin-jpa'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
compileKotlin {
kotlinOptions {
freeCompilerArgs = ["-Xjsr305=strict"]
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
freeCompilerArgs = ["-Xjsr305=strict"]
jvmTarget = "1.8"
}
}
repositories {
mavenCentral()
}
dependencies {
implementation('org.springframework.boot:spring-boot-starter-data-jpa')
implementation('org.springframework.boot:spring-boot-starter-mustache')
implementation('org.springframework.boot:spring-boot-starter-web')
implementation('com.fasterxml.jackson.module:jackson-module-kotlin')
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
implementation("org.jetbrains.kotlin:kotlin-reflect")
runtimeOnly('com.h2database:h2')
runtimeOnly('mysql:mysql-connector-java')
testImplementation('org.springframework.boot:spring-boot-starter-test')
}
答案 0 :(得分:0)
在类上定义其他属性时,Hibernate可以在现有表中添加新列。但是Hibernate不会自动迁移现有的值/行。
在这种情况下,应使用Liquibase或Flyway之类的数据库迁移工具。 Spring Boot supports both。这些工具可帮助您编写一个迁移,该迁移在下次应用程序启动时被删除,并使用丢失的值更新数据库中的现有条目。
我认为您只有现有值存在问题,因为对于新插入的值,定义的默认值看起来是正确的。