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

  1. 红色警告信息:intellij idea cannot resolve property under construction in mybatis-mapper.xml
  2. 如何解决:http://blog.canang.com.my/2016/06/03/intellij-idea-cannot-resolve-property-key/
  3. 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.

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

    Maven test folder structure

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

    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 idea cannot resolve property under construction in mybatis-mapper.xml

      IntelliJ project structure

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

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

      XML based configuration

    6. Locate your spring configuration files.
    7. Done

    Result

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