In my Spring context file, I have a bean called datasource that is shown as red when I use it, like this..:
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="dataSource"/>
</bean>
It says that "datasource must be of javax.sql.Datasource type", which is kind of correct but my datasource is of type com.mchange.v2.c3p0.ComboPooledDataSource, so it should not be flagged as an error....
I think this error appeared in the latest build 7807...