在春季和mybatis配置中注入bean [英] Injecting bean in spring and mybatis configuration

查看:109
本文介绍了在春季和mybatis配置中注入bean的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在Spring 3上配置mybatis.出现以下错误

I am trying to configure mybatis with spring 3. I am getting the following error

 Error creating bean with name 'loginController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'userMapper' is defined

对于UserMapper接口,我已经这样做了.

For UserMapper interfcae I have done like this.

@Service("userMapper")
@Transactional
public interface UserMapper {

 // methods here

}

我的控制器类是

@Controller
@RequestMapping("/")
 public class LoginController
 {
static final Logger logger = Logger.getLogger(LoginController.class);

@Resource(name = "userMapper")
private UserMapper userMapper;

@RequestMapping("/login")
public ModelAndView login(@ModelAttribute User userBean){


    return new ModelAndView("login", "userBean", userBean); 

}

}

我的spring-servelet.xml是

My spring-servelet.xml is

 <?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: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-3.1.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.1.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd">


<!-- Enable annotation driven controllers, validation etc... -->
<mvc:annotation-driven />


<context:component-scan
    base-package="com.mycom.myproject" />

<mvc:resources mapping="/resources/**" location="/resources/" />


<bean id="datasource" class="org.apache.commons.dbcp.BasicDataSource">
    <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
    <property name="url" value="jdbc:mysql://localhost/mydatabase"/>
    <property name="username" value="root"/>
    <property name="password" value="root"/>
</bean>

<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
    <property name="basePackage" value="com.mycom.mydatabase.db.mybatis.sqlmap" />
</bean> 

<bean id="viewResolver"
    class="org.springframework.web.servlet.view.UrlBasedViewResolver">
    <property name="viewClass"
        value="org.springframework.web.servlet.view.JstlView" />
    <property name="prefix" value="/WEB-INF/jsp/" />
    <property name="suffix" value=".jsp" />
</bean>

因此,我如何在此处注入依赖项并可以访问我的数据库方法.如果有任何不清楚的地方,请让我现在.

So, How can I Inject the Dependency here and can access my database methods. Please let me now if any thing is not clear.

推荐答案

在UserMapper界面中,如下所示-

In your UserMapper interface, write down as below-

  public interface UserMapper {

//for example, saveUser will save data in your table taking User as bean
public void saveUser(User user);
}

然后维护如下所示的UserMapper.xml文件-

then maintain a UserMapper.xml file like below-

    <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" 
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="com.puneet.persistance.UserMapper">  
<insert id="saveUser" parameterType="com.puneet.spring3.beans.User">
        INSERT INTO USER (username,password) 
        VALUES (#{username},#{password})
    </insert>
</mapper>

在上面的xml文件中,我们提到了查询和您将用作参考的接口.

In above xml file we mention queries and the interface that you are taking as reference.

在LoginController中,按如下所示调用您的方法-

in your LoginController, call your method like below-

@RequestMapping(method=RequestMethod.POST)
    public ModelAndView add(@ModelAttribute(value="user")User user,BindingResult result){

        ModelAndView mv = new ModelAndView("yourjpspage");
        if(!result.hasErrors()){
            userMapper.saveUser(user);
            user = new User();

        }
        return mv;
    }

最后,在spring-servelet.xml文件中维护所有配置.

In last maintain all configurations in your spring-servelet.xml file.

最重要的是希望对您有帮助.

Hope above all will help you.

这篇关于在春季和mybatis配置中注入bean的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆