AlexFalappa / nb-springboot

NetBeans IDE plugin supporting programming with Spring Boot

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

java.nio.Path properties uncorrectly flagged as data type mismatches

AlexFalappa opened this issue · comments

A configuration property of type java.nio.Path is uncorrectly flagged as a data type mismatch error in the configuration properties editor but it is indeed bound by Spring Boot.

The java.nio.Path is an interface, concrete classes are platform specific and constructed trough the java.nio.Paths factory class.

This pattern could require some special handling.