ArchDemons

Results 14 issues of ArchDemons

Have some idea how its realized in game?

graphics

What changed: 1. KwdFile separate from it loading (to KwdFileLoader) 2. KwdFileLoader can partly load KwdFile (return Proxy) or fully (return KwdFile)

have bean ```java @Bean public RpcService rpcService() { ProxyFactory proxyFactory = new ProxyFactory(); proxyFactory.setInterfaces(RpcService.class.getInterfaces()); proxyFactory.addInterface(RpcService.class); proxyFactory.addAdvice(interceptor); proxyFactory.setOpaque(true); return (RpcService) proxyFactory.getProxy(ClassUtils.getDefaultClassLoader()); } ``` RpcService.class ```java @AutoJsonRpcServiceImpl @JsonRpcService("/rpc") public interface RpcService extends...