spring环境搭建

在做ssh环境搭建时,先搭建spring和hibernate的环境搭建,在搭建struts环境.

好处:在搭建struts环境之前出的错和web容器无关。

一.引入配置文件

  1:从已有的配置文件复制过来

  2:通过xml模板新建配置文件:

    a:首先进行applicationContext.xml文件提示配置(下次再配置可省略此步骤):

    Window----preferences----输入xml----选择xml Catalog----add配置

    

    b:右键new---XML(Basic Templates)---改名applicationContext---Create XML file from an XML schema file---

     Select XML Category entry 选中已配好的配置文件---Root element 选中beans,prefix去掉前缀p---finish

      配置文件如下:

      

二.添加相应的spring jar包

  1.直接把需要的jar包复制到WEB-INF下的lib文件夹下,jar包自动同步到Libraries下的Web App Libraries包下

      

    此种方式jar包会同步到项目中,部署时也会同步到tomcat中.

    

  2.从自己的用户库的中选中相应的jar包

    右键build path

    然后在用户库中选中自己事先配置好的jar包,如下:

    

    此种方式jar包不会同步到项目中,但部署时会同步到tomcat中

    

    注意:添加用户库时如果在此处打钩代表系统库,则jar包不会同步到服务器,这是开发模式才用到的.

三.创建一个date对象检测环境

  1,在applicationContext.xml中创建Date类的代理

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    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-3.2.xsd ">

    <bean id="date" class="java.util.Date"/>

</beans>

  2.建一个测试类

package cn.it.ssh;
import java.util.Date;
import javax.annotation.Resource;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/**
 *
 * @author Administrator
 *
 */
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations="classpath:applicationContext.xml")
public class SSHTest {
    @Resource
    private Date date;
    @Test
    public void date(){
        System.out.println(date);
    }

}

 运行出现则代表环境OK.

  关于出现的注解解释:

   @RunWith(SpringJUnit4ClassRunner.class):

    让测试运行于Spring测试环境, Spring框架在org.springframework.test.annotation 包中提供了常用的Spring特定的注解集,如果你在Java5或以上版本开发,可以在测试中使用它。

  @ContextConfiguration(location="classpath:applicationContext.xml"):

    用来指明Spring配置文件的位置,含义:用来读取src和web-inf下的applicationContext.xml文件.

    如果有多个Spring配置文件 location="classpath:applicationContext-*.xml"

  

时间: 2024-10-21 12:04:45

spring环境搭建的相关文章

Spring环境搭建之:导入jar包、配置文件名称及放置位置

Spring环境搭建之:导入jar包.配置文件名称及放置位置 现在项目开发中spring框架应用的还是比较多的,自己用的还不太熟练,每次用的时候总配置半天,总有些配置弄错,就找个时间总结以下,方便以后再搭建环境的时候直接拿来用. 以Spring4为例,这里就不提供Spring的下载地址了,官网上很容易下的到. 1.导入相关jar包 建好web项目以后,导入Spring自己的jar包 spring-beans-4.0.0.M2.jar spring-context-4.0.0.M2.jar spr

spring环境搭建以及和struts整合

1.首先导入spring所需要的包 2.web.xml中添加spring的监听器以及spring配置文件所在位置 <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <context-param> <param-name>contextConfigLocation<

【Spring环境搭建】在Myeclipse下搭建Spring环境-web开发

<?xml version="1.0" encoding="UTF-8"?> <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.s

1.2 Spring环境搭建--Spring源码深度解析

前言: Spring 的源码已经从 svn 迁移到 GitHub.而且也改为基于 Gradle 的构建来构建项目.它取代了之前的 Ant+Ivy 系统,所以要构建 Spring 源码环境首先要安装 GitHub 以及 Gradle. 安装 GitHub Windows 系统对应的 GitHub 版本下载地址为: http://windows.github.com/.如图所示:

Spring 环境搭建

一.需要的Jar包 二.web.xml 配置文件的修改 spring有三种启动方式,使用ContextLoaderServlet,ContextLoaderListener和ContextLoaderPlugIn,spring3.0及以后版本中已经删除ContextLoaderServlet 和Log4jConfigServlet,可以采用余下两种启动方式ContextLoaderListener和ContextLoaderPlugIn,建议使用ContextLoaderListener. 第一

spring环境搭建(简单实例)

1使用Maven导入需要的依赖(在project标签下) <properties> <spring_version>3.2.2.RELEASE</spring_version> </properties> <!--spring依赖--> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</ar

Spring环境搭建错误

1,cvc-complex-type.2.4.c 此错误是因为导使用jar包都是spring 4.0的jar包,但是配置文件引入的xsd文件版本不对,或者少引入了xsd文件导致. 2, Exception in thread "main" org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'juggler' defined in class path resour

ubuntu下spring环境搭建

一.安装JDK 下载官网:http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 部署: 打开终端:输入vim .bashrc 在后面加上两行:export     JAVA_HOME=(jdk存放地址)/jdk1.6.0_38 export     PATH=$PATH:$JAVA_HOME/bin 然后保存退出,刷新source .bashrc 检查JDK是否成功安装javac -

spring环境搭建需要的插件-------Spring Tool Suite? Downloads

下载地址http://spring.io/tools/sts/all 上面的是集成了eclipse的,所以文件比较大,下面的是单独的插件,下载之后打开eclipse,help->installNewSoftware->add->选择下载好的zip文件->只勾选带有Spring IDE的选项. 注意插件对应eclipse的版本 对于没有对应版本的情况,比如我是4.5.1的,那么就采取网络安装的办法 help->installNewSoftware->add->复制对