Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 890 Bytes

DATA_SOURCES.md

File metadata and controls

33 lines (19 loc) · 890 Bytes

Go Back

Add DataSources in IntelliJ

Follow the steps given below from within IntelliJ:

  • Open the Database interface
  • Click on +
  • Click on Data Source
  • Then click on the data source of your choice

setup-datasource.png

H2 DataSource Setup

Setup the H2 data source something like as shown below:

h2-datasource.png

You'll be able to connect to the H2 data source once the spring boot application is up and running.

MySql DataSource Setup

Setup the MySql data source something like as shown below:

mysql-datasource.png

In order to be able to connect to the MySql data source, you need to have:

  • either MySql installed and running on some systems
  • or MySql running in some docker container

Go Back