gpt4 book ai didi

java - 无法使用spring boot将数据保存到数据库

转载 作者:行者123 更新时间:2023-12-02 09:20:49 24 4
gpt4 key购买 nike

当我运行测试类public void testCreate()时,测试运行没有错误,但我无法将任何数据保存到数据库。

我创建了一个 Product.java 模型类,然后使用创建了一个 ProductRepository.java 扩展 CrudRepository.java 来与MySQL 数据库。

我的Spring boot版本是2.2.0.RELEASE以下是我的类(class):

产品.java

package com.hibernate.productData.entities;



import javax.persistence.Column;

import javax.persistence.Entity;

import javax.persistence.GeneratedValue;

import javax.persistence.GenerationType;

import javax.persistence.Id;

import javax.persistence.Table;



@Entity

@Table

public class Product {

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private int id;

private String name;

@Column(name="description")
private String desc;

private Double price;

public int getId() {

return id;

}

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

public String getName() {return name;}

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

public String getDesc() {return desc;}

public void setDesc(String desc) {this.desc = desc;}

public Double getPrice() {return price;}

public void setPrice(Double price) {this.price = price;}

}

ProductRepository.java

package com.hibernate.productData.repository;
import java.util.Optional;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
import com.hibernate.productData.entities.Product;

@Repository
public class ProductRepository implements CrudRepository<Product, Integer>
{
@Override
public <S extends Product> S save(S entity) {
// TODO Auto-generated method stub
return null;
}



@Override

public <S extends Product> Iterable<S> saveAll(Iterable<S> entities) {

// TODO Auto-generated method stub

return null;

}



@Override

public Optional<Product> findById(Integer id) {

// TODO Auto-generated method stub

return null;

}



@Override

public boolean existsById(Integer id) {

// TODO Auto-generated method stub

return false;

}



@Override

public Iterable<Product> findAll() {

// TODO Auto-generated method stub

return null;

}



@Override

public Iterable<Product> findAllById(Iterable<Integer> ids) {

// TODO Auto-generated method stub

return null;

}



@Override

public long count() {

// TODO Auto-generated method stub

return 0;

}



@Override

public void deleteById(Integer id) {

// TODO Auto-generated method stub

}



@Override

public void delete(Product entity) {

// TODO Auto-generated method stub

}



@Override

public void deleteAll(Iterable<? extends Product> entities) {

// TODO Auto-generated method stub

}



@Override

public void deleteAll() {

// TODO Auto-generated method stub

}



}

ProductDataApplicationTests.java



package com.hibernate.productData;



import org.junit.jupiter.api.Test;

import org.junit.runner.RunWith;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.boot.test.context.SpringBootTest;

import org.springframework.test.context.junit4.SpringRunner;



import com.hibernate.productData.entities.Product;

import com.hibernate.productData.repository.ProductRepository;



@RunWith(SpringRunner.class)

@SpringBootTest

class ProductDataApplicationTests {



@Autowired

ProductRepository repos;

@Test

void contextLoads() {

}

@Test

public void testCreate()

{

Product p = new Product();

p.setId(1);

p.setName("harry potter");

p.setDesc("Awesome");

p.setPrice(100d);

repos.save(p);

}

}

application.properties

spring.datasource.url=jdbc:mysql://localhost:3306/mydb
spring.datasource.username=root
spring.datasource.password=Pblock@10

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.2.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.hibernate.productData</groupId>
<artifactId>productData</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>productData</name>
<description>Hibernate project</description>

<properties>
<java.version>1.8</java.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>

<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

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

</project>

最佳答案

the test is running without error but I am not able to save any data to the DB.

我认为这可能是因为您覆盖了 CrudRepository 的 save 方法。我还没有在任何地方看到过这样做。尝试将 ProductRepository 的实现替换为

package com.hibernate.productData.repository;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
import com.hibernate.productData.entities.Product;

@Repository
public interface ProductRepository extends CrudRepository<Product, Integer>
{
}

我认为正在发生的事情是您的保存方法的实现被调用,但它什么也不做。

关于java - 无法使用spring boot将数据保存到数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58704285/

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