An error occurred when running the spring cloud task batch app
ERROR : Statement.execute(CREATE TABLE TASK_EXECUTION (...) FAILED! org.postgresql.util.PSQLException: exceptioin: "task_execution" A relation of names already exists
Is there a way to disable the table creation script?
It would be nice to diverge whether to run ddl script (create table...) with the value in the local setting in that function...
ex. setting in spring batch app
- spring.batch.jdbc.initialize-schema=never
enter image description here enter image description here
Can I edit this source?