一、新建maven项目,配置ssh框架pom的最低支持

1、新建一个maven项目

依赖于org.springframework/spring-beans/4.1.5.RELEASE 的jar包

GroupId ArtifactId Version Scope 描述
org.springframework spring-context 4.1.5.RELEASE compile Spring Context
org.springframework spring-test 4.1.5.RELEASE compile Spring TestContext Framework
org.springframework spring-web 4.1.5.RELEASE compile Spring Web
org.springframework spring-webmvc 4.1.5.RELEASE compile Spring Web MVC
org.springframework spring-aop 4.1.5.RELEASE compile Spring AOP
org.springframework spring-jdbc 4.1.5.RELEASE compile Spring JDBC
org.springframework spring-tx 4.1.5.RELEASE compile Spring Transaction
org.springframework spring-orm 4.1.5.RELEASE compile Spring Object/Relational Mapping
org.springframework spring-context-support 4.1.5.RELEASE compile Spring Context Support
org.springframework spring-aspects 4.1.5.RELEASE compile Spring Aspects
org.springframework spring-jms 4.1.5.RELEASE compile Spring JMS
org.springframework spring-oxm 4.1.5.RELEASE compile Spring Object/XML Marshalling
org.springframework spring-webmvc-portlet 4.1.5.RELEASE compile Spring Web Portlet
org.grails grails-core 3.0.0.M2 runtime Grails Web Application Framework
org.grails grails-datastore-core 4.0.0.M3 compile GORM - Grails Data Access Framework
org.grails grails-datastore-core 4.0.0.M4 compile GORM - Grails Data Access Framework
org.grails grails-core 3.0.0.RC2 compile Grails Web Application Framework
org.grails grails-core 2.5.0 compile Grails Web Application Framework

http://mvnrepository.com/tags/spring

maven 建立ssh项目的更多相关文章

  1. Maven建立spring-web项目

    参考博客网址: https://blog.csdn.net/caoxuekun/article/details/77336444 1.eclipse集成maven 2.maven创建web项目 3.搭 ...

  2. maven之ssh项目搭建

    1:新建maven-archetupe-webapp项目 2:web.xml配置文件如下 <?xml version="1.0" encoding="UTF-8&q ...

  3. maven搭建ssh项目及遇到的问题

    如果采用手动添加jar包的方式搭建项目,会使效率降低,传到github上时,下载时需要下载很多jar包,用maven管理项目可以提高效率 我在搭建maven项目时遇到了 1) java.lang.No ...

  4. Maven 建立web项目 The import javax.servlet cannot be resolved

    右击项目,选择Java Build Path->Libraries->Add External JARs,tomcat的路径lib文件夹下选中"servlet-api.jar&q ...

  5. Maven 建立的项目resource对应的实际位置

        如图,springmvc-servlet.xml在项目中实际位置为: WEB-INF/classes/config/springmvc/springmvc-servlet.xml   在配置项 ...

  6. 手工MAVEN建立WEBAPP项目并打包部署

    参考URL: http://my.oschina.net/zimingforever/blog/266028 最简单的东东,可以就两条命令: 建立目录及POM.XML: mvn archetype:g ...

  7. eclipse中 使用maven搭建ssh项目 思路复习(含有pom.xml)

    首先在web.xml中配置监听器 在服务器启动的时候 进行bean对象的创建(只会创建单例对象 dao service   多例对象action可不会创建  每个多例对象是不同的 创建了有什么意义呢 ...

  8. eclipse Maven 使用记录 ------ 建立 webapp项目

    maven 建立 webapp 项目 有2种方式 ,  1.在原先app上转换为webapp项目  2.建立maven项目的时候  filter 选择webapp 该选项把webapp文件目录建好,其 ...

  9. Maven的学习资料收集--(九) 构建SSH项目以及专栏maven

    在这里整合一下,使用Maven构建一个SSH项目 1.新建一个Web项目 可以参照前面的博客 2.添加依赖,修改pom.xml <project xmlns="http://maven ...

随机推荐

  1. AndEngine

    AndEngine http://www.oschina.net/question/54100_16765

  2. MyEclipse8.5 以debug模式启动tomcat6.0服务器 报错cannot connect to vm。

    打开MyEclipse8.5 想以debug模式启动tomcat6.0服务器,报  a configuration error occurred during startup.please verif ...

  3. 关于Memo或者Edit之类控件, 直接设置Text无法撤销的解决方案

    昨天看到群里有人问使用Memo1.Text := '11111';来设置内容的代码无法使用Memo1.Undo的方式来撤销 测试了一下果然如此, 跟踪了VCL代码, 发现Text := '11111' ...

  4. Sandbox 文件存放规则

    文档1, document2,  document3 一.文件路径介绍 <Application_Home>/AppName.app : 1) This is the bundle dir ...

  5. avalon---qunar ued

    http://avalonjs.github.io/ http://ued.qunar.com/ https://github.com/RubyLouvre/avalon 1.前后端分离-- 2.gr ...

  6. EntityFramework执行SQL语句

    在EF中执行Sql语句. using (var context = new EFRecipesEntities()) { string sql = @"insert into Chapter ...

  7. Android笔记:Socket客户端收发数据

    client.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" and ...

  8. c#上传文件(一)使用 .net 控件上传文件

    1.html代码: <body> <form id="form1" runat="server"> <div> <as ...

  9. django GET POST

    django需要读取客户端get和post请求的值.读取处理方法和异常记录于此. 参考链接: http://stackoverflow.com/questions/12518517/request-p ...

  10. spring mvc 静态资源 404问题

    spring mvc 静态资源 404问题 在web.xml配置servlet-mapping的时候,如果url-pattern设置为"/" (如下),很多人都会遇到导入js,cs ...