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.
我刚刚在我的应用程序代码中遇到了一个字符串变量,其中的值分配如下
String YEAR="${year}";
这里的 String 变量的值是什么?
没有被插值,只是${year}.
${year}
我几乎可以保证String将在代码的其他地方插入。
String
例如,Maven 使用这种语法将变量值注入到它的配置设置中。
使用 IntelliJ 之类的 IDE 并在此变量上执行查找用法。扩展查找(在路径中搜索/查找)也可能产生结果。正如这里的其他人所建议的那样,它很可能是在其他地方插入的。