java - Spring Autowiring 的dao为空

标签 java spring web-services hibernate spring-mvc

我正在尝试创建 REST Web 服务来处理 Android 应用程序的 CRUD 操作。我正在使用 Spring 4.0 和 Hibernate。我正在尝试 Autowiring dao,但它始终为空,而且我无法找出问题的原因。我在网上搜索,一切看起来都对我来说,所以我完全迷失了。我在 applicationContext 中定义了 bean,正如我在许多教程中看到的那样,但我无法让 dao Autowiring 。任何帮助,将不胜感激。

dispatch-servlet.xml

<?xml version='1.0' encoding='UTF-8' ?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
       http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
       http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">


    <context:annotation-config />
    <mvc:annotation-driven />
    <context:component-scan base-package="com.bike.party.services, com.bike.party.daos" />
  <tx:annotation-driven transaction-manager="transactionManager"  />

</beans>

applicationContext.xml

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:p="http://www.springframework.org/schema/p" xmlns:tx="http://www.springframework.org/schema/tx" 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-4.0.xsd        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">

   <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" id="propertyConfigurer" p:location="/WEB-INF/jdbc.properties"/>

<bean class="org.springframework.jdbc.datasource.DriverManagerDataSource" id="dataSource" p:driverClassName="${jdbc.driverClassName}" p:password="${jdbc.password}" p:url="${jdbc.url}" p:username="${jdbc.username}"/>

    <!-- ADD PERSISTENCE SUPPORT HERE (jpa, hibernate, etc) -->
    <bean class="org.springframework.orm.hibernate4.LocalSessionFactoryBean" id="sessionFactory">
        <property name="dataSource" ref="dataSource"/>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">${hibernate.dialect}</prop>
                <prop key="hibernate.show_sql">true</prop>

            </props>
        </property>
        <property name="packagesToScan" value="com.bike.party.models"/>
    </bean>

    <bean class="org.springframework.orm.hibernate4.HibernateTransactionManager" id="transactionManager" p:sessionFactory-ref="sessionFactory" />    

    <tx:annotation-driven/>
</beans>

用户Dao

package com.bike.party.daos;

import com.bike.party.models.User;

public interface UserDao extends Dao<User> {

    public User findByUserName(String username);
}

UserDaoImpl

package com.bike.party.daos;

import com.bike.party.models.User;
import java.util.List;
import javax.transaction.Transactional;
import org.hibernate.SessionFactory;
import org.hibernate.criterion.Restrictions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Repository;

@Repository
@Transactional
@Qualifier("userDaoImpl")
public class UserDaoImpl implements UserDao {

    @Autowired
    private SessionFactory sessionFactory;

    @Override
    public User findByUserName(String username) {
        List<User> userList = sessionFactory.getCurrentSession().createCriteria(User.class).add(Restrictions.eq("username", username)).setMaxResults(1).list();
        return userList.isEmpty() ? null : userList.get(0);
    }
}

用户Web服务

package com.bike.party.services;

import com.bike.party.daos.UserDao;
import com.bike.party.models.User;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.ext.Provider;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

@Provider
@Component
@Path("userservice")
public class UserWebService {

    @Autowired
    private UserDao userDao;

    @GET
    @Path("/user/{username}")
    @Produces(MediaType.TEXT_PLAIN)
    public String getUser(String username) {
        if (userDao == null) {
            return "the dao is null";
        }

        User user = userDao.findByUserName(username);
        if (user == null) {
            return "No user was found.";
        } else {
            return user.getUsername();
        }
    }
}

更新:

我修改了 UserWebService

private UserDao userDao;

    @Autowired
    public void setUserDao(UserDao userDao) {
        if (functionDao != null) {
            System.out.println(String.valueOf(userDao.findByUserName("chris")));
        } else {
            System.out.println("setting the dao is null :(");
        }
        this.userDao= userDao;
    }

当部署网络应用程序时,它会被调用并找到用户,但是当我从客户端调用它时,它始终为空。这可能是因为我直接调用该服务而不是通过 spring 吗?如果是这样,任何人都可以指出我创建从客户端调用服务的方法。谢谢

最佳答案

我相信spring找不到你的UserDao类。

尝试将 dispatch-servlet.xml 中的 component-scan 指令更改为以下指令:

<context:component-scan base-package="com.bike.party.*" />

如果您使用Spring Tool Suite项目中的所有 @Component 都应标记为组件(带有 S 的图标):

enter image description here

编辑: 从 xml 中删除 bean 定义,不要混合 xml 和带注释的配置。 同时从注释中删除 "userDaoImpl"。将 @Repository("userDaoImpl") 更改为 @Repository()

关于java - Spring Autowiring 的dao为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27139886/

相关文章:

java - 从类路径访问资源文件

python - 帮我选择一个网络服务平台来扩展现有的 python 网络服务

java - 比 XHTMLRenderer+iText 更有效的将 HTML 转换为 PDF 的方法

java - 使用单独的 application.properties 创建 Spring Boot 测试

web-services - gsoap:如何使其可配置?

java - SimpleMessageListenerContainer 批量消息处理

java - 无法将请求的参数与数据库条目匹配[Spring MVC 和 Hibernate ORM]

java - 找不到类型为 : class java. util.ArrayList 的返回值的转换器(Spring Boot)

java - 添加到日历日期...不准确?

java - 无法在 JSF 中链接到 CSS 中的图像