欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

为Eclipse上的Maven project添加SpringMVC和Mybatis以实现数据库

程序员文章站 2024-04-05 17:43:42
...

背景 工作中要实现跨数据库的package调用,在jsp前端返回,目前项目上只是Maven,所以参照Andyの笔记来看看结合自己所在项目都需要哪些更新来实现一个简单的功能。 1、Maven 虽然项目中已经在Eclipse中嵌入了Maven,但还是可以单独安装一个Maven的工具在系统

背景

工作中要实现跨数据库的package调用,在jsp前端返回,目前项目上只是Maven,所以参照Andyの笔记来看看结合自己所在项目都需要哪些更新来实现一个简单的功能。

1、Maven

虽然项目中已经在Eclipse中嵌入了Maven,但还是可以单独安装一个Maven的工具在系统中,参考Andy的Maven环境搭建和介绍 来操作即可。为Eclipse上的Maven project添加SpringMVC和Mybatis以实现数据库

中间遇到了问题“-Dmaven.multiModuleProjectDirectory system propery is not set. Check $M2_HOME environment variable and mvn script match.”,可以在这里解决。

2、Generate Mybatis

加载完dependence之后,按Andy的Mybatis使用generator自动生成映射配置文件信息交待生成配置文件。其中正确生成了BxxxxxLxxxx.java,BxxxxxLxxxxMapper.java 以及BxxxxxLxxxxMapper.xml,分别放在\src\main\java\com\xxxxx\xxx\domain,src\main\java\com\xxxxx\xxx\mapper以及src\main\java\com\xxxxx\xxx\mapper\sqlmaps目录下。

3、引入Spring并配置

按照步骤提示继续,针对即将新引入的jar包,更改pom.xml文件

        
        org.springframeworkspring-core3.1.1.RELEASEorg.springframeworkspring-beans3.1.1.RELEASEorg.springframeworkspring-context3.1.1.RELEASEorg.springframeworkspring-tx3.1.1.RELEASEorg.springframeworkspring-web3.1.1.RELEASEorg.springframeworkspring-webmvc3.1.1.RELEASEorg.springframeworkspring-jdbc3.1.1.RELEASEorg.springframeworkspring-test3.1.1.RELEASEtestorg.mybatismybatis3.1.0org.mybatismybatis-spring1.1.1log4jlog4j1.2.17org.apache.strutsstruts2-core2.3.16.3org.apache.strutsstruts2-json-plugin2.3.16.3org.apache.strutsstruts2-spring-plugin2.3.16.3com.google.code.gsongson2.1com.mchangec3p00.9.5org.aspectjaspectjweaver1.6.8cglibcglib2.2.2
...
        
                 
                 src/main/resource
           
              *.xml
              *.properties
           
             
      
以及需要在build节点里加入以下resources引用,以帮助Maven加载需要的struts和myBatisConfig的配置文件。