源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

Java Spring开发环境搭建及简单入门示例教程

  • 时间:2022-02-16 12:28 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:Java Spring开发环境搭建及简单入门示例教程
本文实例讲述了Java Spring开发环境搭建及简单入门示例。分享给大家供大家参考,具体如下: [b]前言[/b] 虽然之前用过Spring,但是今天试着去搭建依然遇到了困难,而且上网找教程,很多写的是在web里使用Spring MVC的示例,官方文档里的getting start一开始就讲原理去了(可能打开的方法不对)。没办法,好不容易实验成功了,记下来免得自己以后麻烦。 [b]添加依赖包[/b] 进入spring官网,切换到projects下点击 spring framework.官网上写的是以maven依赖的形式写的,所以可以新建一个maven项目,然后将下面的依赖加入到pom.xml里
<dependencies>
  <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>4.2.0.RELEASE</version>
  </dependency>
</dependencies>

或者,也可以点击这个页面右上角的fork me on github,在github里下载依赖包,然后加入到项目的build path中去。 注意, spring-context只是包含了spring最核心的功能,如依赖注入,切面等。 [b]创建spring配置文件[/b] 新建一个名为bean.xml的配置文件,放到代码目录里,文件的内容如下:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:p="http://www.springframework.org/schema/p"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
      http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
      http://www.springframework.org/schema/context
      http://www.springframework.org/schema/context/spring-context-3.0.xsd">
   <context:component-scan base-package="com.lcl"></context:component-scan>
</beans>

[b]这个配置文件有几个地方需要说明一下:[/b] 1、命名空间
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:p="http://www.springframework.org/schema/p"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
      http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
      http://www.springframework.org/schema/context
      http://www.springframework.org/schema/context/spring-context-3.0.xsd">

这个是xml的语法,配置当前xml文件中的标签格式,这里配置了context和p两个命名空间。例如,配了context空间,就可以使用</context:XXX>这样的标签。 2、自动扫描组件
<context:component-scan base-package="com.lcl"></context:component-scan>

这个配置可以让spring框架自动扫描代码中用@component注解了的类,自动创建这些类的对象。 最后注意一下bean.xml要放在代码目录下,其目的是为了将bean.xml添加到classpath中。 [b]编写代码[/b] 首先,写一个Person类作为bean类。所谓bean类,简单来说就是所有成员变量都有getter和setter方法,并且有无参构造方法的类。然后用了[code]@Component(“person”)[/code]注解将Person类标注为一个组件,这样,就可以使用@ResourcePerson的一个实例注入给其他对象的成员里,或者使用Application类的[code]getBean(Class)[/code]方法得到一个实例。
package com.lcl;
import org.springframework.stereotype.Service;
@Component("person")
public class Person {
  private String name;
  private int age;
  public String getName() {
    return name;
  }
  public void setName(String name) {
    this.name = name;
  }
  public int getAge() {
    return age;
  }
  public void setAge(int age) {
    this.age = age;
  }
  public void info(){
    System.out.println("一起来吃麻辣烫!");
    System.out.println("name:"+getName()+" age:"+getAge());
  }
}

然后是A类,A类有person成员变量引用了Person的实例,我们是用spring的依赖注入来管理成员变量person的创建,为了达到这个目的,只需要将person变量用@Resource注解标注即可。
package com.lcl;
import javax.annotation.Resource;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Service;
/**
 * @author luchunlong
 *
 * 2015年8月27日 上午10:20:41
 */
@Component
public class A {
  @Resource
  private Person person;
  public void info(){
    person.setName("abc");
    person.setAge(123);
    person.info();
  }
  public static void main(String[] args){
    ApplicationContext ctx=new ClassPathXmlApplicationContext("bean.xml");
    A a=ctx.getBean(A.class);
    a.info();
  }
}

[b]总结[/b] 创建一个spring项目只要三步: ① 加入依赖 ② 编写bean类 ③ 编写bean.xml 其中编写bean类时用到了@Component@Resource这两个注解 更多关于java相关内容感兴趣的读者可查看本站专题:《[url=http://www.1sucai.cn/Special/575.htm]Spring框架入门与进阶教程[/url]》、《[url=http://www.1sucai.cn/Special/632.htm]Java数据结构与算法教程[/url]》、《[url=http://www.1sucai.cn/Special/830.htm]Java操作DOM节点技巧总结[/url]》、《[url=http://www.1sucai.cn/Special/687.htm]Java文件与目录操作技巧汇总[/url]》和《[url=http://www.1sucai.cn/Special/682.htm]Java缓存操作技巧汇总[/url]》 希望本文所述对大家java程序设计有所帮助。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部