Editor is identifying non-errors
I'm a rookie when it comes to using Intellij. I'm using release 10.0.2 - Ultimate.
The problem I am having is the editor highlites what it considers errors but they in fact
are not errors. There are so many flagged errors I can't tell what are real errors and what are
ficticious errors. I have to believe that these ficticious errors are due to how the ide is configured.
Here are 4 examples of the ficticious errors:
1. @Table(schema = "ROD001", name = "TRANSACTIONS") NOTE: the values for schema and name are shown in red
2 .@Column(name = "CHECKOUT_TMPSTMP", nullable = false, length = 26, precision = 6) Note: the CHECKOUT_TMPSTMP value is shown in red
3. @Autowired
@Qualifier("transactionDao")
public void setTransactionDao(TransactionDao transactionDao) { Note: Qualifier - transactionDao is shown in red
this.transactionDao = transactionDao;
}
4. documentsService.documentsDao = documentsDao note: documentsDao is underlined and should not be.
Can someone tell me how to fix this?
Thanks
Lee
Please sign in to leave a comment.
Table names & schemas are checked against database schema which can be loaded from a real database or composed from DDL statements.
See Tools/Data Sources menu or directly Data Sources toolwindow to configure data source.
As always you can use quickfix available in highlighted region via Alt-Enter shortcut.
Gregory Shrago