Hi all,
I´m using java and SDN6
I have and endpoint that return a list of "Feed"
the query cypher return this:
and I have to map this field "v" into Feed.java
Feed.java
when I map the v as listaProp y get this error:
ERROR 46684 --- [nio-8080-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.util.MissingFormatArgumentException: Format specifier '%s'] with root cause
java.util.MissingFormatArgumentException: Format specifier '%s'
at java.base/java.util.Formatter.format(Formatter.java:2672) ~[na:na]
at java.base/java.util.Formatter.format(Formatter.java:2609) ~[na:na]
at java.base/java.lang.String.format(String.java:2897) ~[na:na]
at org.springframework.data.neo4j.repository.query.DtoInstantiatingConverter.lambda$getPropertyValueFor$2(DtoInstantiatingConverter.java:134) ~[spring-data-neo4j-6.0.5.jar:6.0.5]
at org.springframework.core.log.LogMessage$SupplierMessage.buildString(LogMessage.java:155) ~[spring-core-5.3.4.jar:5.3.4]
at org.springframework.core.log.LogMessage.toString(LogMessage.java:70) ~[spring-core-5.3.4.jar:5.3.4]
at java.base/java.lang.String.valueOf(String.java:2951) ~[na:na]
Thanks in advance!
Regards