我在application.properties中设置了一个String属性,如下所示:
something.some-path="something/somewhere"
我想使用SpEL将其转换为Path对象。我尝试通过这种方式进行操作,但不起作用:
class SomeClass {
@Value("#{T(java.nio.file.Paths).get('${something.some-path}')}")
private Path pathINeed;
}
有可能吗,如果是的话,我还缺少什么?