Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的 Play 应用程序中执行一些配置选项(log4j 和 ActiveJDBC),但找不到在stratup 上添加自定义代码的方法。
有什么选择吗?
您必须GlobalSettings在根包中定义扩展类并覆盖以下两种方法之一:(beforeStart在任何插件之前执行的主体)或onStart(在所有插件之后执行的主体),这取决于您到底需要什么。请参阅文档和API。
GlobalSettings
beforeStart
onStart