Infinispan embedded

147 Views Asked by At

I'm just following the Infinispan embedded tutorial, at step 5 it doesn't work because of this exception:

java.lang.IllegalArgumentException: No marshaller registered for Java type org.infinispan.tutorial.embedded.LocationWeather
    .
    [some details here]
    .
    .
    at org.infinispan.cache.impl.EncoderCache.put(EncoderCache.java:674)
    at org.infinispan.tutorial.embedded.CachingWeatherService.getWeatherForLocation(CachingWeatherService.java:17)
    at org.infinispan.tutorial.embedded.WeatherApp.fetchWeather(WeatherApp.java:50)
    at org.infinispan.tutorial.embedded.WeatherApp.main(WeatherApp.java:69)

I was seeking about how to register the marshaller here, but I don't get it, it should be declared at the pom.xml or where?

If it is at pom, in which part?

Thanks :D

1

There are 1 best solutions below

2
On

I have updated the tutorial to work with Infinispan 11 including changes to how marshalling needs to be implemented. I hope this works out for you