1. 红色警告信息:
  2. 如何解决:http://blog.canang.my/2016/06/03/intellij-idea-cannot-resolve-property-key/
  3. IntelliJ IDEA Cannot resolve property key

      Mohd Alif Haikal Abdul Razak     June 3, 2016      No Commentson IntelliJ IDEA Cannot resolve property key

    IntelliJ offers a very intelligent experience by giving you such a relevant suggestion in every context. However, in some parts, you need to configure them.

    Our project / product are maven-based and we used spring framework. The spring configuration is in XML file. We discover that IntelliJ unable to refer to property or annotated beans that you declared under test/resources directory. Note that this is not happen to the configs file under src/resources. For example, you’ll see a warning on ${db.dev.url} which tells you the key cannot be resolved.

    Maven test folder structure

    Property cannot be resolved

    Solution

    For quick fix, what you can do is to include all your spring configs under test directory in your IntelliJ project structure.

    1. Open project structure (CTRL + ALT + SHIFT + S) in on windows
    2. Under project settings, select Modules
    3. Select a module and add Spring

      IntelliJ project structure

    4. Add new application context
    5. Select XML based configurations

      XML based configuration

    6. Locate your spring configuration files.
    7. Done

    Result


更多推荐

intellij idea cannot resolve property under construction in mybatis-mapper.xml