public static final String JDBC_DRIVER = value from yml;
public static final String DB_URL = value from yml;
public static final String DB_NAME = value from yml;
public static final String USER = value from yml;
public static final String PASSWORD = value from yml;
public static final String PORT = value from yml;
the yml file:
database:
host: url
user: username
password: password
name: postgres
port: 5432
schema: project2
I've tried to use the @ Value annotation but that seems to be for spring framework and not for javelin.