• 大小: 71.71MB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2021-12-23
  • 语言: 其他
  • 标签: 异步图书  

资源简介

《SpringMvc学习指南书上源码(第二版)》书上完整代码,静下心来学习,才能收获更多,不要总是浮在表面。

资源截图

代码片段和文件信息

package app01a;

import java.util.Calendar;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathxmlApplicationContext;

import app01a.bean.Employee;
import app01a.bean.Product;

public class Main {
    public static void main(String[] args) {
        ApplicationContext context =
                new ClassPathxmlApplicationContext(new String[] {“spring-config.xml“});
        Product product1 = context.getBean(“product“ Product.class);
        product1.setName(“Excellent snake oil“);
        System.out.println(“product1: “ + product1.getName());
        
        Product product2 = context.getBean(“product“ Product.class);
        System.out.println(“product2: “ + product2.getName());
        
        Product featuredProduct = context.getBean(“featuredProduct“ Product.class);
        System.out.println(featuredProduct.getName() + “ “ + featuredProduct.getDescription()
                + “ “ + featuredProduct.getPrice());
        
        Calendar calendar = context.getBean(“calendar“ java.util.Calendar.class);
        System.out.println(calendar.getTime());
        
        
        Employee employee1 = context.getBean(“employee1“ Employee.class);
        System.out.println(employee1.getFirstName() + “ “ + employee1.getLastName());
        System.out.println(employee1.getHomeAddress());

        Employee employee2 = context.getBean(“employee2“ Employee.class);
        System.out.println(employee2.getFirstName() + “ “ + employee2.getLastName());
        System.out.println(employee2.getHomeAddress());

    }

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-08-20 13:06  springMvc_ym\
     目录           0  2018-08-21 10:04  springMvc_ym\.git\
     文件           9  2018-08-20 13:19  springMvc_ym\.git\COMMIT_EDITMSG
     文件         130  2018-08-21 10:04  springMvc_ym\.git\config
     文件          73  2018-08-20 13:06  springMvc_ym\.git\description
     文件          95  2018-08-20 13:26  springMvc_ym\.git\FETCH_HEAD
     文件          23  2018-08-20 13:06  springMvc_ym\.git\HEAD
     目录           0  2018-08-20 13:06  springMvc_ym\.git\hooks\
     文件         478  2018-08-20 13:06  springMvc_ym\.git\hooks\applypatch-msg.sample
     文件         896  2018-08-20 13:06  springMvc_ym\.git\hooks\commit-msg.sample
     文件        3327  2018-08-20 13:06  springMvc_ym\.git\hooks\fsmonitor-watchman.sample
     文件         189  2018-08-20 13:06  springMvc_ym\.git\hooks\post-update.sample
     文件         424  2018-08-20 13:06  springMvc_ym\.git\hooks\pre-applypatch.sample
     文件        1638  2018-08-20 13:06  springMvc_ym\.git\hooks\pre-commit.sample
     文件        1348  2018-08-20 13:06  springMvc_ym\.git\hooks\pre-push.sample
     文件        4898  2018-08-20 13:06  springMvc_ym\.git\hooks\pre-rebase.sample
     文件         544  2018-08-20 13:06  springMvc_ym\.git\hooks\pre-receive.sample
     文件        1492  2018-08-20 13:06  springMvc_ym\.git\hooks\prepare-commit-msg.sample
     文件        3610  2018-08-20 13:06  springMvc_ym\.git\hooks\update.sample
     文件        4416  2018-08-20 13:25  springMvc_ym\.git\index
     目录           0  2018-08-20 13:06  springMvc_ym\.git\info\
     文件         240  2018-08-20 13:06  springMvc_ym\.git\info\exclude
     目录           0  2018-08-20 13:11  springMvc_ym\.git\logs\
     文件         735  2018-08-20 13:25  springMvc_ym\.git\logs\HEAD
     目录           0  2018-08-20 13:12  springMvc_ym\.git\logs\refs\
     目录           0  2018-08-20 13:11  springMvc_ym\.git\logs\refs\heads\
     文件         735  2018-08-20 13:25  springMvc_ym\.git\logs\refs\heads\master
     目录           0  2018-08-21 10:04  springMvc_ym\.git\logs\refs\remotes\
     目录           0  2018-08-20 13:25  springMvc_ym\.git\objects\
     目录           0  2018-08-20 13:10  springMvc_ym\.git\objects\02\
     文件         612  2018-08-20 13:10  springMvc_ym\.git\objects\02\b3da4b41e226aae977cc7c382d3ef1a4621c3d
............此处省略1208个文件信息

评论

共有 条评论