-
@chengfang I have a question about this file: How are the data loaded during the execution of: It seems I can't find where the data is loaded into the tables: I'm asking because this is related with: #364 |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
https://github.com/jberet/jsr352/blob/main/test-apps/infinispanRepositoryJdbc/src/main/resources/jberet.properties specifies that for this test app, infinispan job repository will be used. It also specifies the infinispan config file to use. So for |
Beta Was this translation helpful? Give feedback.
-
@chengfang Thanks for teaching! |
Beta Was this translation helpful? Give feedback.
-
@chengfang In addition, I tried to check the input data by exporting the database to a file: https://github.com/jberet/jsr352/compare/main...liweinan:h2_file?expand=1 And I can see the generated tables and its data by loading the database in IntelliJ: Where are the sources of these data in the table? It seems I can't find the data input source anywhere. |
Beta Was this translation helpful? Give feedback.
-
I think |
Beta Was this translation helpful? Give feedback.
https://github.com/jberet/jsr352/blob/main/test-apps/infinispanRepositoryJdbc/src/main/resources/jberet.properties specifies that for this test app, infinispan job repository will be used. It also specifies the infinispan config file to use.
So for
JdbcInfinispanRepositoryIT
,jdbc-infinispan.xml
is the infinispan config file, which configures infinispan to use in-memory h2 database connection.