Sonar:代码检查Make the enclosing method static or remove this set.

蒋曾笑
2023-12-01

Sonar:修复代码检查Make the enclosing method static or remove this set.

sonar检查不通过位置:

public class SpringContextHolder implements ApplicationContextAware {

	private static ApplicationContext applicationContext;
	
	@Override
	public void setApplicationContext(ApplicationContext applicationContext)
			throws BeansException {
		SpringContextHolder.applicationContext = applicationContext;
		//Make the enclosing method "static" or remove this set.
	}
}

解决方法:

public class SpringContextHolder implements ApplicationContextAware {

	@Setter
	private static volatile ApplicationContext applicationContext;
	
	@Override
	public void setApplicationContext(ApplicationContext applicationContext)
			throws BeansException {
		setAppCtx(applicationContext);
	}
}
 类似资料: