Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

netty版本和redisson不兼容。出现classNotFound错误 #173

Open
fanlushuai opened this issue May 21, 2019 · 1 comment
Open

netty版本和redisson不兼容。出现classNotFound错误 #173

fanlushuai opened this issue May 21, 2019 · 1 comment

Comments

@fanlushuai
Copy link

No description provided.

@kit-lee
Copy link

kit-lee commented Oct 8, 2019

我也碰到过同样错误,你可以通过在pom.xml的weixin-base及weixin-server依赖中排除netty-all的包解决,具体参考这里

<dependency>
			<groupId>com.foxinmy</groupId>
			<artifactId>weixin4j-base</artifactId>
			<version>1.8.1</version>
			<exclusions>
				<exclusion>
					<groupId>io.netty</groupId>
					<artifactId>netty-all</artifactId>
				</exclusion>
			</exclusions>
		</dependency>
		<dependency>
			<groupId>com.foxinmy</groupId>
			<artifactId>weixin4j-server</artifactId>
			<version>1.1.9</version>
			<exclusions>
				<exclusion>
					<groupId>io.netty</groupId>
					<artifactId>netty-all</artifactId>
				</exclusion>
			</exclusions>
		</dependency>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants