Coder Social home page Coder Social logo

Comments (3)

 avatar commented on July 24, 2024

You probably want to add DDL-Auto to create/update schema on application start. H2 does that automatically, other databases don't. Here's an example for your application.yml:

spring:
  jpa:
    hibernate:
      ddl-auto: update

Also, import.sql will automatically be imported on start for H2. However, for mysql you need to update above spring.jpa.hibernate.ddl-auto to create or create-drop, see more details here:
https://docs.spring.io/spring-boot/docs/current/reference/html/howto-database-initialization.html

This might be a problem if you have multiple instances of the application running. You probably want some kind of schema evolution tool like flywaydb or liquibase - but that might be an overkill for the workshop.

from devops-workshop.

pacphi avatar pacphi commented on July 24, 2024

I like your ideas Neven. Flyway would be nice to introduce. I have a (considerably more rich) personal "pet project" that I could pull example config from, here: https://github.com/fastnsilver/grivet. It could be used to explore and exercise other parts of the Spring Boot and Spring Cloud eco-systems.

from devops-workshop.

pacphi avatar pacphi commented on July 24, 2024

Thanks @nevenc-pivotal! A refinement of your PR was merged in to master with ad34a5f.

from devops-workshop.

Related Issues (17)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.