What steps will reproduce the problem?
1. Create a sqlMap file with typeAlias elements
2. Create resultMaps (or selects) that refer to these typeAlias elements
3. The class names show up in red as the plugin is unable to resolve them
For example:
<sqlMap>
<typeAlias type="com.whatever.NameValuePair" alias="nvp"/>
<resultMap class="nvp" id="nvpResult">
<result property="name" columnIndex="1"/>
<result property="value" columnIndex="1"/>
</resultMap>
</sqlMap>
What is the expected output? What do you see instead?
Plugin should be able to resolve typeAliases
What version of the product are you using? On what operating system?
Plugin: 1.0.0, IDEA: 9.0.2 beta, OS: Windows XP
Please provide any additional information below.
The location I place my files is in a source package so I'm assuming this
is not related to the issue the other guy reported regarding placing his
sql map files in the web-inf dir.
Original issue reported on code.google.com by
harpark...@gmail.comon 2 Feb 2010 at 10:49