使用webservice在jar中使用服务

时间:2017-06-23 01:05:33

标签: web-services rest

我在spring mvc创建的jar文件中有服务。 我的问题是如何在其他Spring启动项目中通过rest api使用这些服务。 任何帮助都非常感谢。

我的AppConfig:

package com.Taco;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration
@ComponentScan({"org.DAO","org.Service"})
public class AppConfig {

}

1 个答案:

答案 0 :(得分:1)

  1. 在您的其他春季项目中声明您的jar作为依赖项。

  2. 在配置类中,在@ComponentScan

  3. 中声明您的服务