SpringBoot3 整合 Mybatis 完整版
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
@MapperScan(basePackages = "com.example.demo.mapper")
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
@Mapper
interface UserMapper {
@Select("SELECT * FROM user")
List<User> findAll();
}
class User {
// 用户属性和方法
}
这个代码示例展示了如何在Spring Boot 3应用程序中整合MyBatis。@MapperScan
注解指定了Mapper接口所在的包,UserMapper
接口使用MyBatis注解定义了一个简单的查询所有用户的方法。User
类代表了用户实体,并且可以包含属性和方法。这个例子提供了整合MyBatis所需的基本步骤。
评论已关闭