We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
配置sip.enabled=true启用sip服务,media_server表重建清空数据。
sip.enabled=true
media_server
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [javax.sip.SipFactory]: Factory method 'createSipFactory' threw exception; nested exception is java.lang.StackOverflowError at com.fastbee.sip.service.impl.MediaServerServiceImpl.selectMediaServerBytenantId(MediaServerServiceImpl.java:77)
表数据为空时,出现死循环
public MediaServer selectMediaServerBytenantId(Long tenantId) { List<MediaServer> list = mediaServerMapper.selectMediaServerBytenantId(tenantId); if (list.size() == 0) { return selectMediaServerBytenantId(1L); } ... ... }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
使用场景
配置
sip.enabled=true
启用sip服务,media_server
表重建清空数据。异常日志
问题代码
表数据为空时,出现死循环
The text was updated successfully, but these errors were encountered: