我想为我的Rest api实现安全性,在这里我的问题是,我有这个基于xml的配置。但在我的项目中,我想使用基于java注释的配置。如何将基于xml的配置转换为基于java的配置?下面的代码是基于xml的配置,提前感谢所有帮助。
|-------+-------|
| name | cats |
|-------+-------|
| xyzzy | a b c |
| plugh | b |
| quux | |
| quuux | a c |
|-------+-------|
答案 0 :(得分:0)
您可以保留xml配置并将其导入java基本配置,如下所示:
@Configuration
@ImportResource(value="path/to/xml")
public class SecurityConfiguration{
//additionnal configurations here
}
我认为这是最好的方法。