In my application properties i have:
spring.datasource.url=jdbc:sqlserver://localhost:1433;databaseName=recipe
spring.datasource.username=sa
spring.datasource.password=Merck123!
spring.datasource.driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver
spring.jpa.show-sql=true
spring.jpa.hibernate.dialect=org.hibernate.dialect.SQLServer2012Dialect
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.SQLServer2012Dialect
spring.jpa.hibernate.ddl-auto = update
spring.jpa.hibernate.entitymanager.packagesToScan:com
I want to access this hibernate and database from outside the application after creating the jar. Is it possible or will spring boot will take care of it?