zoukankan      html  css  js  c++  java
  • Spring-2--开发环境搭建

    1、Spring 框架的核心jar 包

    Spring框架jar 包
    Spring框架jar 包

    除此之外,还有其他一些 jar 包。


    2、Spring 的 HelloWorld

    • 1、引入jar 包
    • 2、编写 com.ppjuice.helloworld.HelloWorld 类
    package com.ppjuice.helloworld;
    
    public class HelloWorld {
    
        private String username;
    
        public void setUsername(String username) {
            this.username = username;
        }
    
        /**
         * 成员方法
         */
        public void hello() {
            System.out.println("This is hello....");
        }
    
        /**
         * 空参构造器
         */
        public HelloWorld() {
            // TODO Auto-generated constructor stub
        }
    }
    • 3、配置 ApplicationContext .xml 文件
  • 相关阅读:
    PHP install perl module
    PHP 静态页
    PHP对类的操作
    PHP Mysql操作。
    2020.7.16
    2020.7.19
    2020.7.14
    2020.7.12
    2020.7.17
    2020.7.10
  • 原文地址:https://www.cnblogs.com/pengguozhen/p/14776912.html
Copyright © 2011-2022 走看看