我最近开始使用语义Web和链接数据技术,但我总是对一件事感到困惑.本体论和词汇表之间有什么区别?哪个更好?
有什么区别
@Configuration
class ConfigA extends ConfigB {
//Some bean definitions here
}
Run Code Online (Sandbox Code Playgroud)
和
@Configuration
@Import({ConfigB.class})
class ConfigA {
//Some bean definitions here
}
Run Code Online (Sandbox Code Playgroud)