Spaces:
Configuration error
Configuration error
| package com.example.app.configurations; | |
| import org.springframework.boot.autoconfigure.jdbc.DataSourceProperties; | |
| import org.springframework.boot.context.properties.ConfigurationProperties; | |
| import org.springframework.context.annotation.Bean; | |
| import org.springframework.context.annotation.Configuration; | |
| import org.springframework.context.annotation.Primary; | |
| public class DataSourceConfiguration { | |
| public DataSourceProperties dataSourceProperties() { | |
| return new DataSourceProperties(); | |
| } | |
| } | |