Spring boot. Run SQL scripts and get data on application startup

Laurynas :

I am developing a spring boot application. At the moment some of my configs are hard coded (e.g. Hystrix properties).

So I would like to get these configs on my application start up time or just after that.

Is it possible to do that using spring boot? I mean to run SQL script on start up and get data.

How should properties/configs be retrieved and stored in my application?

I am using MyBatis and Oracle DB.

alexbt :

By default, Spring-Boot loads data.sql and/or data-${platform}.sql.

However, keep in mind that the script would be loaded at every start, so I would think it makes more sense (at least for production), to just have the values already present in the database, not re-inserted at every start. I've personally only used database initialization for test/dev purposes when using a memory database. Still, this is the feature provided by Spring-Boot.

source: spring-boot-howto-database-initialization:

Spring JDBC has a DataSource initializer feature. Spring Boot enables it by default and loads SQL from the standard locations schema.sql and data.sql (in the root of the classpath). In addition Spring Boot will load the schema-${platform}.sql and data-${platform}.sql files (if present).

src/main/resources/data-oracle.sql:

insert into...
insert into...
  • You may define the platform with: spring.datasource.platform=oracle.
  • You may change the name of the sql script to load with: spring.datasource.data=myscript.sql.
  • Along with data.sql, Spring-boot also loads schema.sql (before data.sql).
  • You could also have an "update or insert" logic in your data.sql: oracle sql: update if exists else insert

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=448563&siteId=1
Recommended