gpt4 book ai didi

java - 每次重新启动应用程序时,使用 CrudRepository 的 Spring boot 数据库(Apache Derby)都会被删除

转载 作者:行者123 更新时间:2023-12-05 07:42:30 26 4
gpt4 key购买 nike

我刚刚开始使用 Spring Boot 应用程序。我正在关注 Java Brain's Spring Boot playlist .

设置:对于 CRUD 操作,我使用 CrudRepository(@Repository) 接口(interface)作为通过 Controller(@RestController) 促进 API 的父接口(interface),Apache Derby 用作嵌入式数据库用于应用程序数据 (@Entities)。 @RestController@Repository 之间的桥接是使用一个@Service 注释类完成的。

问题:每当我重新启动 Spring Boot 应用程序时,我都会丢失使用 POST @RequestBody 存储到嵌入式数据库中的所有数据。如果我想将一些数据存储到数据库中,我必须再次执行 POST 请求。对于我来说,无论是对于开发还是对于生产,这显然都不是一个好的做法,我一定是做错了什么。

repo :

@Repository
public interface DailyRashifalRepository extends
CrudRepository<DailyRashifalEntity, String> {
}

实体:

@Entity
@Table(name="daily_rashifal")
public class DailyRashifalEntity {

@Id
private String id;
private String rashifal;
private int yr;
private int month;
private int day;

public DailyRashifalEntity(String id, String rashifal, int yr, int month, int day) {
super();
this.id = id;
this.rashifal = rashifal;
this.yr = yr;
this.month = month;
this.day = day;
}

private DailyRashifalEntity() {
super();
}
//Getters and setters
// equals to and hascode overrides
}

应用:

@SpringBootApplication
public class DemoApplication {

public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}

服务:

@Service
public class RashifalService {

@Autowired
DailyRashifalRepository dailyRepo;
@Autowired
WeeklyRashifalRepository weeklyRepo;
@Autowired
MonthlyRashifalRepository monthlyRepo;
@Autowired
YearlyRashifalRepository yearlyRepo;



public List<DailyRashifalEntity> getDailyAll(int year, int month, int day) {
List<DailyRashifalEntity> rashiList = new ArrayList<DailyRashifalEntity>();
dailyRepo.findAll().forEach(rashiList::add);
return rashiList;
}
public DailyRashifalEntity getDaily( String id, int year, int month, int day) {
return dailyRepo.findOne(id);
}
public void addDaily(DailyRashifalEntity entity) {
dailyRepo.save(entity);
}
public void addDailyAll(List<DailyRashifalEntity> entityList) {
for(int i=0;i<entityList.size();i++){
dailyRepo.save(entityList.get(i));
}
}

public void updateDaily(DailyRashifalEntity entity) {
dailyRepo.save(entity);
}
.....Other methods
}

Controller :

@RestController
public class RashifalController {

@Autowired
private RashifalService service;


//Daily Rashifal API


@RequestMapping("rashifal/daily")
public List<DailyRashifalEntity> getDailyRashifalAll() {
return service.getDailyAll(2017, 2, 3);
}

@RequestMapping("rashifal/daily/{id}")
public DailyRashifalEntity getDailyRashifal(@PathVariable String id) {
return service.getDaily(id,2017, 2, 3);
/*DailyRashifalEntity entity = new DailyRashifalEntity("3", "Ramro Din", 2074, 2, 28);
return entity;*/
}

@RequestMapping(method = RequestMethod.POST, value = "rashifal/daily")
public void addRashifalAll(@RequestBody List<DailyRashifalEntity> entityList) {
service.addDailyAll(entityList);

}

@RequestMapping(method = RequestMethod.PUT, value = "rashifal/daily/")
public void updateRashifalDailyAll(@RequestBody List<DailyRashifalEntity> entityList) {
service.updateDailyAll(entityList);
}

@RequestMapping(method = RequestMethod.DELETE, value = "rashifal/daily/delete_all")
public void deleteDailyAll(@RequestBody List<DailyRashifalEntity> entityList) {
service.deleteDailyAll(entityList);
}

@RequestMapping(method = RequestMethod.DELETE, value = "rashifal/daily/delete_all_by_day/{year}/{month}/{day}")
public void deleteDailyAllByDay(@PathVariable("year") int year, @PathVariable("month") int month,
@PathVariable("day") int day) {
service.deleteDailyAllByDay(year, month, day);
}

@RequestMapping(method = RequestMethod.DELETE, value = "rashifal/daily/delete_by_day/{id}/{year}/{month}/{day}")
public void deleteDailyByDay( @PathVariable("id") String id,@PathVariable("year") int year,
@PathVariable("month") int month, @PathVariable("day") int day) {
service.deleteDailyByDay(id,year, month, day);
}
}

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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.gurkhatech</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>demo</name>
<description>Spring boot api for rashifal REST api</description>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.3.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</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.apache.derby</groupId>
<artifactId>derby</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>

应用程序属性:

server.port=8080 
spring.thymeleaf.cache=false

我做错了什么?可以看到全部代码here或者您可以在 Github 中查看代码(请关注 Stack Overflow 问题发布)。

最佳答案

您需要一个数据库来保存数据,H2 和 Derby 是嵌入式的,需要在启动时将数据编码到数据库中。要添加一个简单的 MySQL 数据库,您可以将其添加到您的 pom.xml 中:

    <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>6.0.6</version>
</dependency>

您需要在 application.properties 中为数据源设置属性,如下所示:

spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
# Everything after the ? is optional but I have found recommended previously.
spring.datasource.url=jdbc:mysql://serverip:3306/databasename?useSSL=false&useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
# Username and password
spring.datasource.username=user
spring.datasource.password=password

对于我以前在刚开始时发现有用的引用资料如下: https://github.com/spring-projects/spring-petclinic以及来自 https://github.com/joshlong 的大量 Youtube 视频和代码

关于java - 每次重新启动应用程序时,使用 CrudRepository 的 Spring boot 数据库(Apache Derby)都会被删除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44456968/

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