Mybatis整合spring

整合思路

1、SqlSessionFactory对象应该放到spring容器中作为单例存在。
2、传统dao的开发方式中,应该从spring容器中获得sqlsession对象。
3、Mapper代理形式中,应该从spring容器中直接获得mapper的代理对象。
4、数据库的连接以及数据库连接池事务管理都交给spring容器来完成。

整合需要的jar包

1、spring的jar包
2、Mybatis的jar包
3、Spring+mybatis的整合包。
4、Mysql的数据库驱动jar包。
5、数据库连接池的jar包。

配置文件

SqlMapConfig.xml

配置文件是SqlMapConfig.xml,如下:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration><!-- 设置别名 --><typeAliases><!-- 2. 指定扫描包,会把包内所有的类都设置别名,别名的名称就是类名,大小写不敏感 --><package name="cn.itcast.mybatis.pojo" /></typeAliases></configuration>

applicationContext.xml

SqlSessionFactoryBean属于mybatis-spring这个jar包

如何查看SqlSessionFactoryBean源码?

对于spring来说,mybatis是另外一个架构,需要整合jar包。

在项目中加入mybatis-spring-1.2.2.jar的源码,如下图
这里写图片描述
这里写图片描述
效果,如下图所示,图标变化,表示源码加载成功:
这里写图片描述
整合Mybatis需要的是SqlSessionFactoryBean,位置如下图:
这里写图片描述

applicationContext.xml,配置内容如下

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:context="http://www.springframework.org/schema/context" 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: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.xsdhttp://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsdhttp://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.xsdhttp://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd"><!-- 加载配置文件 --><context:property-placeholder location="classpath:db.properties" /><!-- 数据库连接池 --><bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"destroy-method="close"><property name="driverClassName" value="${jdbc.driver}" /><property name="url" value="${jdbc.url}" /><property name="username" value="${jdbc.username}" /><property name="password" value="${jdbc.password}" /><property name="maxActive" value="10" /><property name="maxIdle" value="5" /></bean><!-- 配置SqlSessionFactory --><bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"><!-- 配置mybatis核心配置文件 --><property name="configLocation" value="classpath:SqlMapConfig.xml" /><!-- 配置数据源 --><property name="dataSource" ref="dataSource" /></bean>
</beans>

db.properties

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/mybatis?characterEncoding=utf-8
jdbc.username=root
jdbc.password=root

log4j.properties

# Global logging configuration
log4j.rootLogger=DEBUG, stdout
# Console output...
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n

效果

这里写图片描述

Dao的开发


两种dao的实现方式:
1、原始dao的开发方式
2、使用Mapper代理形式开发方式
a) 直接配置Mapper代理
b) 使用扫描包配置Mapper代理

需求:
1. 实现根据用户id查询
2. 实现根据用户名模糊查询
3. 添加用户

创建pojo

public class User {private int id;private String username;// 用户姓名private String sex;// 性别private Date birthday;// 生日private String address;// 地址get/set。。。
}

传统dao的开发方式

原始的DAO开发接口+实现类来完成。
需要dao实现类需要继承SqlsessionDaoSupport类

实现Mapper.xml

编写User.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="test"><!-- 根据用户id查询 --><select id="queryUserById" parameterType="int" resultType="user">select * from user where id = #{id}</select><!-- 根据用户名模糊查询用户 --><select id="queryUserByUsername" parameterType="string"resultType="user">select * from user where username like '%${value}%'</select><!-- 添加用户 --><insert id="saveUser" parameterType="user"><selectKey keyProperty="id" keyColumn="id" order="AFTER"resultType="int">select last_insert_id()</selectKey>insert into user(username,birthday,sex,address)values(#{username},#{birthday},#{sex},#{address})</insert></mapper>

加载Mapper.xml

在SqlMapConfig如下图进行配置:
这里写图片描述

实现UserDao接口

public interface UserDao {/*** 根据id查询用户* * @param id* @return*/User queryUserById(int id);/*** 根据用户名模糊查询用户列表* * @param username* @return*/List<User> queryUserByUsername(String username);/*** 保存* * @param user*/void saveUser(User user);}

实现UserDaoImpl实现类

编写DAO实现类,实现类必须集成SqlSessionDaoSupport
SqlSessionDaoSupport提供getSqlSession()方法来获取SqlSession

public class UserDaoImpl extends SqlSessionDaoSupport implements UserDao {@Overridepublic User queryUserById(int id) {// 获取SqlSessionSqlSession sqlSession = super.getSqlSession();// 使用SqlSession执行操作User user = sqlSession.selectOne("queryUserById", id);// 不要关闭sqlSessionreturn user;}@Overridepublic List<User> queryUserByUsername(String username) {// 获取SqlSessionSqlSession sqlSession = super.getSqlSession();// 使用SqlSession执行操作List<User> list = sqlSession.selectList("queryUserByUsername", username);// 不要关闭sqlSessionreturn list;}@Overridepublic void saveUser(User user) {// 获取SqlSessionSqlSession sqlSession = super.getSqlSession();// 使用SqlSession执行操作sqlSession.insert("saveUser", user);// 不用提交,事务由spring进行管理// 不要关闭sqlSession}
}

配置dao

把dao实现类配置到spring容器中,如下图
这里写图片描述

测试方法

创建测试方法,可以直接创建测试Junit用例。
如下图所示进行创建。
这里写图片描述
这里写图片描述
这里写图片描述
编写测试方法如下:
public class UserDaoTest {
private ApplicationContext context;

@Before
public void setUp() throws Exception {this.context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
}@Test
public void testQueryUserById() {// 获取userDaoUserDao userDao = this.context.getBean(UserDao.class);User user = userDao.queryUserById(1);System.out.println(user);
}@Test
public void testQueryUserByUsername() {// 获取userDaoUserDao userDao = this.context.getBean(UserDao.class);List<User> list = userDao.queryUserByUsername("张");for (User user : list) {System.out.println(user);}
}@Test
public void testSaveUser() {// 获取userDaoUserDao userDao = this.context.getBean(UserDao.class);User user = new User();user.setUsername("曹操");user.setSex("1");user.setBirthday(new Date());user.setAddress("三国");userDao.saveUser(user);System.out.println(user);
}

}

Mapper代理形式开发dao

编写UserMapper.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="cn.itcast.mybatis.mapper.UserMapper"><!-- 根据用户id查询 --><select id="queryUserById" parameterType="int" resultType="user">select * from user where id = #{id}</select><!-- 根据用户名模糊查询用户 --><select id="queryUserByUsername" parameterType="string"resultType="user">select * from user where username like '%${value}%'</select><!-- 添加用户 --><insert id="saveUser" parameterType="user"><selectKey keyProperty="id" keyColumn="id" order="AFTER"resultType="int">select last_insert_id()</selectKey>insert into user(username,birthday,sex,address) values(#{username},#{birthday},#{sex},#{address})</insert>
</mapper>

实现UserMapper接口

public interface UserMapper {/*** 根据用户id查询* * @param id* @return*/User queryUserById(int id);/*** 根据用户名模糊查询用户* * @param username* @return*/List<User> queryUserByUsername(String username);/*** 添加用户* * @param user*/void saveUser(User user);
}

方式一:配置mapper代理

在applicationContext.xml添加配置
MapperFactoryBean也是属于mybatis-spring整合包

<!-- Mapper代理的方式开发方式一,配置Mapper代理对象 -->
<bean id="userMapper" class="org.mybatis.spring.mapper.MapperFactoryBean"><!-- 配置Mapper接口 --><property name="mapperInterface" value="cn.itcast.mybatis.mapper.UserMapper" /><!-- 配置sqlSessionFactory --><property name="sqlSessionFactory" ref="sqlSessionFactory" />
</bean>

测试方法

public class UserMapperTest {private ApplicationContext context;@Beforepublic void setUp() throws Exception {this.context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");}@Testpublic void testQueryUserById() {// 获取MapperUserMapper userMapper = this.context.getBean(UserMapper.class);User user = userMapper.queryUserById(1);System.out.println(user);}@Testpublic void testQueryUserByUsername() {// 获取MapperUserMapper userMapper = this.context.getBean(UserMapper.class);List<User> list = userMapper.queryUserByUsername("张");for (User user : list) {System.out.println(user);}}@Testpublic void testSaveUser() {// 获取MapperUserMapper userMapper = this.context.getBean(UserMapper.class);User user = new User();user.setUsername("曹操");user.setSex("1");user.setBirthday(new Date());user.setAddress("三国");userMapper.saveUser(user);System.out.println(user);}
}

方式二:扫描包形式配置mapper

<!-- Mapper代理的方式开发方式二,扫描包方式配置代理 -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"><!-- 配置Mapper接口 --><property name="basePackage" value="cn.itcast.mybatis.mapper" />
</bean>

每个mapper代理对象的id就是类名,首字母小写

练习代码保存

applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:context="http://www.springframework.org/schema/context" 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: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.xsdhttp://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsdhttp://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.xsdhttp://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd"><!-- 加载配置文件 --><context:property-placeholder location="classpath:db.properties" /><context:component-scan base-package="com.itcast.dao"></context:component-scan><!-- 数据库连接池 --><bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"destroy-method="close"><property name="driverClassName" value="${jdbc.driver}" /><property name="url" value="${jdbc.url}" /><property name="username" value="${jdbc.username}" /><property name="password" value="${jdbc.password}" /><property name="maxActive" value="10" /><property name="maxIdle" value="5" /></bean><!-- 配置SqlSessionFactory --><bean name="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"><!-- 配置mybatis核心配置文件 --><property name="configLocation" value="classpath:SqlMapConfig.xml" /><!-- 依赖注入 -配置数据源 --><property name="dataSource" ref="dataSource" /></bean><!-- 原始DAO开发  配置UserDaoImpl --><bean name="userDao" class="com.itcast.dao.UserDaoImpl"><!-- 配置sqlSessionFactory --><property name="sqlSessionFactory" ref="sqlSessionFactory"></property></bean><!-- mybatis中mapper动态代理 --><!-- <bean name="mapperFactoryBean" class="org.mybatis.spring.mapper.MapperFactoryBean"><property name="sqlSessionFactory" ref="sqlSessionFactory"></property><property name="mapperInterface" value="com.itcast.mapper.mapper" /></bean> --><!-- 增强版mapper动态代理 --><bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"><!-- 此时不需要写得到sqlSessionFactory,因为sqlsessionfactory配置在spring容器当中它自动会去找 --><property name="basePackage"   value="com.itcast.mapper"></property></bean>
</beans>

mapper动态代理代码

SqlMapConfig.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration><!-- 设置别名 --><typeAliases><!-- 2. 指定扫描包,会把包内所有的类都设置别名,别名的名称就是类名,大小写不敏感 --><package name="com.itcast.dao" /></typeAliases><mappers><mapper resource="UserMapper.xml"/><!-- 当DAO用传统的DAO开发的时候不能用其他的方式导入mapper.xml文件只能用package --><package name="com.itcast.mapper"/></mappers>
</configuration>

mapper.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.itcast.mapper.mapper"><!-- 通过ID查询一个用户 --><select id="queryUserById" parameterType="Integer" resultType="com.itcast.pojo.User"><!-- <include refid="selector"></include> -->select * from user where id = #{id}</select>
</mapper>

mapper.java

package com.itcast.mapper1;import com.itcast.pojo1.User;public interface mapper {public User queryUserById(Integer id);
}

原始DAO开发方式代码

UserDao.java

package com.itcast.dao;import com.itcast.pojo1.User;public interface UserDao {public User queryUserById(Integer id);public Integer countUser();
}

UserDaoImpl.java

package com.itcast.dao;import org.apache.ibatis.session.SqlSession;
import org.mybatis.spring.support.SqlSessionDaoSupport;import com.itcast.pojo1.User;public class UserDaoImpl extends SqlSessionDaoSupport implements UserDao {@Overridepublic User queryUserById(Integer id) {SqlSession session = super.getSqlSession();User user = session.selectOne("queryUserById", id);return user;}@Overridepublic Integer countUser() {SqlSession session = super.getSqlSession();Integer s = session.selectOne("countUser");return s;}
}

测试类

package com.itcast.test;import javax.annotation.Resource;import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;import com.itcast.dao.UserDao;
import com.itcast.mapper1.mapper;
import com.itcast.pojo1.User;
/*@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")*/
public class TestUserDaoDemo1 {@Resource(name="userDao")public UserDao userDao;private ApplicationContext context;/*传统DAO开发方式*/@Testpublic void testDemo() {this.context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");UserDao userDao = (UserDao) context.getBean("userDao");User user = userDao.queryUserById(1);System.out.println(user);}/*mapper动态代理,不需要写实现类只需要写接口即可*/@Testpublic void testDemo1() {this.context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");UserDao userDao = (UserDao) context.getBean("userDao");Integer s = userDao.countUser();System.out.println(s);}/*mapper动态代理增强版,解决了上述方式中多个mapper文件都需要手动导入*/@Testpublic void testDemo2() {this.context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");/*有两种方式可以加载mapper 通过文件名字或者是mapper.class*/mapper bean = (mapper) context.getBean("mapper");User user = bean.queryUserById(1);System.out.println(user);}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/509369.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

最少拦截系统

某国为了防御敌国的导弹袭击,发展出一种导弹拦截系统.但是这种导弹拦截系统有一个缺陷:虽然它的第一发炮弹能够到达任意的高度,但是以后每一发炮弹都不能超过前一发的高度.某天,雷达捕捉到敌国的导弹来袭.由于该系统还在试用阶段,所以只有一套系统,因此有可能不能拦截所有的导弹…

云计算的理解

原文&#xff1a;http://www.chinacloud.cn/show.aspx?id15917&cid17 老叟发现&#xff0c;即使是一些搞计算机的人&#xff0c;也不了解“云”是什么。于是&#xff0c;俺卖车之余就写了一篇科普&#xff1a; 到底什么是云(云计算) 有很多关于云的介绍。然而&#xff0c;…

什么是Springmvc以及如果编写第一个入门程序

Spring web mvc和Struts2都属于表现层的框架,它是Spring框架的一部分,我们可以从Spring的整体结构中看得出来,如下图&#xff1a; Springmvc处理流程 入门程序 创建web工程 springMVC是表现层框架&#xff0c;需要搭建web工程开发。 如下图创建动态web工程&#xff1a; 输入…

迷瘴

Problem Description 通过悬崖的yifenfei&#xff0c;又面临着幽谷的考验—— 幽谷周围瘴气弥漫&#xff0c;静的可怕&#xff0c;隐约可见地上堆满了骷髅。由于此处长年不见天日&#xff0c;导致空气中布满了毒素&#xff0c;一旦吸入体内&#xff0c;便会全身溃烂而死。幸好y…

驳斥《沙盒用于数据防泄密是重大技术原理性失误》

http://blog.ifeng.com/article/30786929.html 最近网上出现了一篇名为《沙盒用于数据防泄密是重大技术原理性失误》的文章&#xff0c;经作者鉴定&#xff0c;是某不良公司攻击技术领先的竞争对手苏州深信达公司的软文。该公司为何主动公开攻击竞争对手&#xff0c;可能和最近…

windows驱动开发学习

序言] 很多人都对驱动开发有兴趣,但往往找不到正确的学习方式.当然这跟驱动开发的本土化资料少有关系.大多学的驱动开发资料都以英文为主,这样让很多驱动初学者很头疼.本人从事驱动开发时间不长也不短,大概也就3~4年时间.大多数人都认为会驱动开发的都是牛人,高手之类的.其实高…

Springmvc架构详解

框架结构 框架结构如下图&#xff1a; 架构流程 1、 用户发送请求至前端控制器DispatcherServlet 2、 DispatcherServlet收到请求调用HandlerMapping处理器映射器。 3、 处理器映射器根据请求url找到具体的处理器&#xff0c;生成处理器对象及处理器拦截器(如果有则生成)一…

区间覆盖问题

用i来表示x坐标轴上坐标为[i-1&#xff0c;i]的长度为1的区间&#xff0c;并给出n&#xff08;1≤n≤200&#xff09;个不同的整数&#xff0c;表示n个这样的区间。 现在要求画m条线段覆盖住所有的区间&#xff0c;条件是&#xff1a;每条线段可以任意长&#xff0c;但是要求所…

Windows驱动开发如何入门

http://blog.csdn.net/charlessimonyi/article/details/50904854 http://blog.csdn.net/charlessimonyi/article/details/50904956

springmvc整合mybatis之准备阶段与文件配置

文章出处&#xff1a;课程资料 web.xml等配置文件的解释&#xff1a;打开博客 为了更好的学习 springmvc和mybatis整合开发的方法&#xff0c;需要将springmvc和mybatis进行整合。 整合目标&#xff1a;控制层采用springmvc、持久层使用mybatis实现。 步骤详解&#xff1a; …

悼念512汶川大地震遇难同胞

Problem Description 时间&#xff1a;2008年5月16日&#xff08;震后第4天&#xff09; 地点&#xff1a;汶川县牛脑寨人物&#xff1a;羌族老奶奶【转载整理】牛脑寨是一个全村600多人的羌族寨子&#xff0c;震后几天&#xff0c;这里依然能常常听到隆隆的声音&#xff0c;那…

Win10下VS2015(WDK10)驱动开发环境配置

1、 概述 微软在”WDK7600“以后就不再提供独立的内核驱动开发包了&#xff0c;而是必须首先安装微软集成开发环境VisualStudio&#xff0c;然后再从微软官网下载集成的WDK开发包、或者离线安装包&#xff0c;但是安装后Visual Studio就集驱动程序开发&#xff0c;编译&…

懒虫小鑫

roblem Description 小鑫是个大懒虫&#xff0c;但是这一天妈妈要小鑫去山上搬些矿石去城里卖以补贴家用。小鑫十分的不开心。不开心归不开心&#xff0c;小鑫还是要做这件事情的。我们把这个事情简化一下。有n块矿石&#xff0c;设第i块矿石由两个数字wi和pi表示。分别表示这块…

springmvc与mybatis整合之实现商品列表

需求 实现商品查询列表&#xff0c;从mysql数据库查询商 品信息。. DAO开发 使用逆向工程&#xff0c;生成代码 注意修改逆向工程的配置文件 ItemService接口 public interface ItemService {/*** 查询商品列表* * return*/List<Item> queryItemList();}. ItemServi…

中断处理程序与中断服务例程

版权声明&#xff1a;本文为博主原创文章&#xff0c;未经博主允许不得转载。 目录(?)[-] 1 什么是中断2中断处理程序3中断服务例程4request_irq函数分析 1. 什么是中断 简单来说中断就是硬件设备与处理器的一种交流方式&#xff0c;比如当我按下一个键时&#xff0c;只有当处…

Windows驱动程序开发语言

Windows驱动程序和Win32应用程序一样&#xff0c;都是PE格式&#xff0c;所以说&#xff0c;只要某种语言的编译器能够编译出PE格式的二进制格式文件&#xff0c;并且能够设置驱动程序的入口地址&#xff0c;那么这种语言就可以用来开发Windows驱动程序&#xff0c;所以可以选择…

java 正则表达式 手机号 邮箱(转载)

转载地址&#xff1a;https://www.cnblogs.com/go4mi/p/6426215.html package com.modules.plateform.tool;import java.util.regex.Pattern; /*** 账户相关属性验证工具**/ public class AccountValidatorUtil {/*** 正则表达式&#xff1a;验证用户名*/public static final …

商人小鑫

Problem Description 小鑫是个商人&#xff0c;当然商人最希望的就是多赚钱&#xff0c;小鑫也一样。 这天&#xff0c;他来到了一个遥远的国度。那里有着n件商品&#xff0c;对于第i件商品需要付出ci的价钱才能得到。当然&#xff0c;对于第i件商品&#xff0c;小鑫在自己心中…

Windows驱动程序调用约定

调用约定是指在函数进行调用的时候&#xff0c;会根据不同的调用规则&#xff0c;翻译成不同的汇编代码。不同的调用约定&#xff0c;会有不同的参数的入参顺序&#xff0c;和调用堆栈的处理方式。比较常用的分为C语言调用约定_cdecl&#xff0c;和标准调用约定_stdcall. Wind…

装船问题

Problem Description 王小二毕业后从事船运规划工作&#xff0c;吉祥号货轮的最大载重量为M吨&#xff0c;有10种货物可以装船。第i种货物有wi吨&#xff0c;总价值是pi。王小二的任务是从10种货物中挑选若干吨上船&#xff0c;在满足货物总重量小于等于M的前提下&#xff0c;运…