Running Nomin Mapper under Eclipse cause NominException: Resource not found
问题 I am using a Spring/Groovy application with Nomin as mapper. My Tests run fine on console after gradle build/test . Nomin finds the groovy resource file with the defined mapping. But I dont get it work in Eclipse/STS. I defined a Utils class to get the Resource File Name: class ResourceUtils { static def getMapperResource() { ClassPathResource.newInstance("coinmarketcap2coin.groovy").filename } } My Class using Nomin Mapper calls the constructor as: def nomin = new Nomin(ResourceUtils