gpt4 book ai didi

spring - 如何 Autowiring 另一个项目中的类

转载 作者:行者123 更新时间:2023-12-04 03:02:48 25 4
gpt4 key购买 nike

我有两个 java 项目作为 epService 和 epEntity(用于数据库访问的工厂类)。还有另一个 Spring 项目为 epWeb,其中包含 Controller ,这是一个 Rest API。
现在,我想将 epEntity 内部的一个类自动连接到 spring 项目 epWeb。
我已经在那个 epWeb 项目中成功地 Autowiring 了类,但是我无法从另一个项目中 Autowiring 一个类
任何人有这样做的建议,请告诉我。
如果这与 stackoverflow 无关,请删除它。

我 Autowiring 的类(class)
公共(public)类映射器{

@Autowired
private SessionFactory sessionFactory;

public void setSessionFactory(SessionFactory sessionFactory) {
this.sessionFactory = sessionFactory;
}
@Autowired
private AppointmentFactory af;
@Autowired
private AppointmentController ac;
}

mvc-调度程序-servlet.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">

<context:component-scan base-package="com.mobios.ep.web.controllers" />
<!-- <context:component-scan base-package="com.mobios.ep.services" />
<context:component-scan base-package="com.ombios.ep.entity.factory" /> -->
<mvc:annotation-driven />
<mvc:resources mapping="/resources/**" location="/resources/" />

<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/pages/"/>
<property name="suffix" value=".jsp"/>
</bean>
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="maxUploadSize" value="1048576"/>
</bean>
</beans>

最佳答案

您可以使用 @ComponentScan主应用程序中的注释epWeb为了在位于 epEntity 的 Spring 上下文类中注册项目作为 Bean( Controller 、服务等)。

@ComponentScan({"com.example.service", "com.example.controlle‌​r"})

此外,请确保服务实现使用 @Service 进行注释。在 epEntity项目。

关于spring - 如何 Autowiring 另一个项目中的类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47667258/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com