【问题标题】:Not able to save data to the database using spring boot无法使用spring boot将数据保存到数据库
【发布时间】:2019-11-05 03:57:14
【问题描述】:

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

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

我的 Spring Boot 版本是 2.2.0.RELEASE 以下是我的课程:

Product.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>

【问题讨论】:

  • 发布您的 application.properties 和 pom.xml 以帮助其他人找到您的问题所在。
  • 已添加..@ChaojunZhong

标签: java hibernate spring-boot unit-testing


【解决方案1】:

测试运行正常,但我无法将任何数据保存到数据库。

我认为这可能是因为您覆盖了 CrudRepository 的保存方法。我在任何地方都没有看到这样做。尝试将 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>
{
}

我认为正在发生的事情是你的 save 方法的实现被调用,它什么都不做。

【讨论】:

  • 当我删除这些方法时,ProductRepository.java 给我一个错误提示“添加未实现的方法”提示我从 CrudRepository 添加方法
  • @AnantVikramSingh 更新了我的答案
猜你喜欢
  • 2020-02-12
  • 1970-01-01
  • 2018-05-12
  • 1970-01-01
  • 2019-06-02
  • 1970-01-01
  • 2021-12-01
  • 1970-01-01
  • 2019-08-28
相关资源
最近更新 更多