首先让我们看整体的框架结构:
接下来,我们先创建一个父类项目(pom类型的)
![在这里我直接进行下一步操作]
创建好了父项目是这样的
erp_parent里面的pom.xml是这样的
接下来去创建子项目分别是:erp_biz,erp_dao,erp_entity,erp_web
下一步
下一步
erp_biz里面的pom.xml初始数据是:
这样我们第一个子项目就创建好了,其他几个同上(erp_web)注意他的打包方式是web包,我继续为大家搭建一下(erp_web子项目)。
按照我的指示一步步下来即可
创建所以项目完成后的样子
接下来,我们现在要做的是关联个个项目的依赖关系
其他的一样erp_biz依赖erp_dao,erp_web依赖erp_biz方法同上
献上全部代码:
erp_parent里面的pom.xml数据:
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
erp_biz里面的pom.xml数据:
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
erp_dao里面的pom.xml数据:
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
erp_entity里面的pom.xml数据:
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
erp_web里面的pom.xml数据:
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
接下来就是访问数据库操作了
接下来就是erp_dao:
dao层接口
dao层实现类
切记from Dep一定要跟实体类一致
代码如下:
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
代码如下:
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd ">
接下来测试一下从数据访问到的数据值:
这里就创建完成,我们来测试一下
结果如下:14个数据值(我的数据库里有14个值)
数据库表献上:
create table DEP (
UUID NUMBER not null,
NAME VARCHAR2(30),
TELE VARCHAR2(30),
constraint PK_DEP primary key (UUID)
);
表里面的值就自己随便填多少个都可以,在此全部完结,不懂可以联系我,欢迎在下方留言。