zoukankan      html  css  js  c++  java
  • Spring_初次体会Spring

    Hello Spring

      需要导入的依赖

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-webmvc</artifactId>
        <version>5.3.5</version>
    </dependency>
    
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-jdbc</artifactId>
        <version>5.3.5</version>
    </dependency>

      引入配置文件

    <?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
            https://www.springframework.org/schema/beans/spring-beans.xsd">
    
        <bean id="hello" class="com.gazikel.pojo.Hello">
            <property name="str" value="Hello Spring"></property>
        </bean>
    
    </beans>

      当我们想去new一个对象时,我们将这些操作交给spring去做。

    // 获取Spring上下文对象
    ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
    // 我们的对象现在都在spring中管理了, 我们要使用,直接去里面取出来就可以!
    Hello hello = (Hello) context.getBean("hello");
    
    System.out.println(hello.toString());
  • 相关阅读:
    通用分页后台显示
    自定义的JSP标签
    Java反射机制
    Java虚拟机栈---本地方法栈
    XML建模实列
    XML解析与xml和Map集合的互转
    [离散数学]第二次作业
    [线性代数]2016.10.13作业
    [数字逻辑]第二次作业
    [线性代数]2016.9.26作业
  • 原文地址:https://www.cnblogs.com/Gazikel/p/14907222.html
Copyright © 2011-2022 走看看