You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
then start server
Application run failed with this Exp:
Caused by: java.lang.ClassCastException: com.sun.proxy.$Proxy110 cannot be cast to com.alibaba.nacos.plugin.datasource.proxy.MapperProxy
public class MapperProxy implements InvocationHandler {
//private static final Map<String, MapperProxy> SINGLE_MAPPER_PROXY_MAP = new ConcurrentHashMap<>(16);
private static final Map<String, Mapper> SINGLE_MAPPER_PROXY_MAP = new ConcurrentHashMap<>(16);
}
change MapperProxy to Mapper can solve this problem.
The text was updated successfully, but these errors were encountered:
use this config in application.properties
then start server
Application run failed with this Exp:
Caused by: java.lang.ClassCastException: com.sun.proxy.$Proxy110 cannot be cast to com.alibaba.nacos.plugin.datasource.proxy.MapperProxy
change MapperProxy to Mapper can solve this problem.
The text was updated successfully, but these errors were encountered: