如何使用应用程序配置注册Ratpack的ConfigurableModule

时间:2016-09-04 19:25:14

标签: java ratpack

当前HikariModule包含Java代码中的硬编码值,这不是一个好习惯,更好的是使用db.properties中定义的值。怎么做到这一点?我是否需要创建自定义ConfigurableModule<MyModule.Settings>并在HikariModule内注册MyModule?我还没有找到如何在模块内注册模块的方法。谢谢!

public class App {

    public static void main(String[] args) throws Exception {
        RatpackServer.start(s -> s 
             .serverConfig( configBuilder -> configBuilder
                .findBaseDir()
                .props("db.properties")
                .require("/database", Settings.class)
             )
             .registry(Guice.registry( bindings -> bindings
                     .module(HikariModule.class, hm -> {
                         hm.setDataSourceClassName("org.postgresql.ds.PGSimpleDataSource");
                         hm.addDataSourceProperty("url", "jdbc:postgresql://localhost:5433/ratpack");
                         hm.setUsername("postgres");
                         hm.setPassword("postgres");
                     }).bind(DatabaseInit.class)
             ))
             .handlers( chain -> chain
                    ...
             )
        ); 
    }
}

1 个答案:

答案 0 :(得分:3)

假设您在postgres.yaml中有src/ratpack/postgres.yaml个文件,其内容为:

db:
  dataSourceClassName: org.postgresql.ds.PGSimpleDataSource
  username: postgres
  password: password
  dataSourceProperties:
    databaseName: modern
    serverName: 192.168.99.100
    portNumber: 5432

在同一个目录中,假设您有一个空的.ratpack文件。

然后,您可以从主课程中执行此操作:

RatpackServer.start(serverSpec -> serverSpec
      .serverConfig(config -> config
        .baseDir(BaseDir.find()) // locates the .ratpack file
        .yaml("postgres.yaml") // finds file relative to directory containing .ratpack file
        .require("/db", HikariConfig.class) // bind props from yaml file to HikariConfig class
      ).registry(Guice.registry(bindings -> bindings
        .module(HikariModule.class) // this will use HikariConfig to configure the module
      )).handlers(...));

这里有一个完整的工作示例https://github.com/danhyun/modern-java-web