本文介绍了将Activiti集成到JHipster项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在按照此处的说明将Activiti集成到JHipster项目中:。
I am trying to integrate Activiti to the JHipster Project following the instruction here : getting started with activiti and spring boot.
我面临的一些例外:
- 'userResource'类中的冲突:
- conflict in 'userResource' class:
到目前为止,我已重命名了userResource类来自jhipster,但我无法找出以下异常。
For now I have renamed the userResource class that comes from jhipster, but I am not able to figure out the exception below.
- @WebSecurityConfigurers上的@Order必须唯一:
任何建议或指针都会很有帮助。
Any suggestion or pointers would be really helpful. Thanks in advance.
推荐答案
将 @Order(99)
添加到JHipster生成的WebConfigurer类,等于或小于99。 100。
Add @Order(99)
to the WebConfigurer class that JHipster generated, 99 or any number < 100.
这篇关于将Activiti集成到JHipster项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!