jUnit에서 제공하는 단위 테스트를 사용하지 마세요
요청으로 SpringBoot에서 제공하는 테스트 클래스를 사용하여 테스트해 보세요. 컴포넌트를 자동으로 스캔하고 컨테이너의 Bean 개체를 사용할 수 있습니다
또한 주입된 항목이 있는 경우 그런 다음 SpringBoot 컨테이너에서 이 구성 요소를 꺼내고 주입된 개체의 기능을 사용해야 합니다! ! !
오늘 오류가 있어서 해결하는데 오랜 시간이 걸렸습니다. 결국 아주 저급하고 기본적인 오류라는 걸 알게 되었네요!
이것이 매퍼 인터페이스입니다. @mapper를 사용하는 것은 인터페이스의 프록시 객체를 빈에 등록하는 것과 같지만 컨텍스트에서 찾을 수 없습니다(실제로는 정상입니다)
@Mapper 주석은 Mybatis에서 제공하기 때문입니다. , @Autowried 주석은 Spring에서 제공되므로 IDEA는 Spring의 컨텍스트를 이해할 수 있지만 Mybatis와는 관련이 없습니다. 그리고 @Autowried 소스 코드에서 기본적으로 @Autowried에서는 종속 개체가 존재해야 하므로 IDEA는 현재 빨간색 경고만 표시할 수 있다는 것을 알 수 있습니다.
package com.bit.mapper; import com.bit.pojo.User; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; @Mapper public interface UserMapper { User selectById(@Param("userid") Integer id); }
매퍼 인터페이스에 해당하는 xml 파일입니다.
<?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.bit.mapper.UserMapper"> <select id="selectById" resultType="com.bit.pojo.User"> select * from users where id = #{userid} </select> </mapper>
java 디렉터리에 있는 xml 파일을 리소스 리소스에 추가하고 빌드 태그에 중첩해도 됩니다.
<resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.xml</include> </includes> </resource> </resources>
package com.bit.service; import com.bit.mapper.UserMapper; import com.bit.pojo.User; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class UserServiceImpl implements UserService{ @Autowired private UserMapper userMapper; @Override public User queryById(Integer id) { System.out.println("进入了service"); return userMapper.selectById(id); } }
@SpringBootTest class BitApplicationTests { @Test void contextLoads() { UserService userService = new UserServiceImpl(); userService.queryById(13); System.out.println(userService); System.out.println(userService.queryById(15)); System.out.println(userService.queryById(13)); } }
@SpringBootTest class BitApplicationTests { @Autowired private UserService userService; @Test void contextLoads() { System.out.println(userService.queryById(15)); System.out.println(userService.queryById(13)); } }
위 내용은 SpringBoot가 MyBatis를 통합할 때 발생할 수 있는 문제는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!