gpt4 book ai didi

java - 如何在 Play framework 2.5 中读取属性文件

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:03:53 24 4
gpt4 key购买 nike

我正在使用 Play 框架制作网站。
但是当我尝试读取属性文件时遇到了问题。
我搜索并尝试使用 [Play.application().resourceAsStream("test.properties")] 但出现错误 [Play.application().resourceAsStream("test.properties")]

但有错误:

[the method aplication(Aplication) in the type Play is not applicable for the arguments()]

我该怎么办?

最佳答案

你需要注入(inject)Configuration对象:

斯卡拉

class HomeController @Inject()(conf: Configuration) extends Controller{

def post() = Action{
val testProp = conf.getString("test.properties")
...

Java

public class HomeController extends Controller{

@Inject
private Configuration configuration;

public Result post(){
final String testProp = configuration.getString("test.properties")
...

关于java - 如何在 Play framework 2.5 中读取属性文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43036773/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com