Update task to use Milestone build
Updated partitioned sample readme Updated samples base boot version Updated jpa sample to use jakarta
This commit is contained in:
@@ -16,11 +16,11 @@
|
||||
|
||||
package io.spring.configuration;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.GenerationType;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.Table;
|
||||
import jakarta.persistence.Entity;
|
||||
import jakarta.persistence.GeneratedValue;
|
||||
import jakarta.persistence.GenerationType;
|
||||
import jakarta.persistence.Id;
|
||||
import jakarta.persistence.Table;
|
||||
|
||||
/**
|
||||
* Entity for the id and output to be written to the data store.
|
||||
|
||||
@@ -24,7 +24,7 @@ import javax.sql.DataSource;
|
||||
import org.h2.tools.Server;
|
||||
import org.junit.jupiter.api.AfterEach;
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
// import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.extension.ExtendWith;
|
||||
|
||||
|
||||
@@ -93,7 +93,7 @@ public class JpaApplicationTests {
|
||||
this.server.stop();
|
||||
}
|
||||
|
||||
// @Test
|
||||
@Test
|
||||
public void testBatchJobApp(CapturedOutput capturedOutput) {
|
||||
final String INSERT_MESSAGE = "Hibernate: insert into task_run_output (";
|
||||
this.context = SpringApplication
|
||||
|
||||
Reference in New Issue
Block a user