Spring环境搭建并运行第一个Spring程序
前言
我也是刚开始接触Spring,有兴趣的同学可以和我一起零基础(当然要会Java基础和XML文档)慢慢来,我是跟着和我一起自学的同学的学习步骤来的,学习Spring之前先看一下我之前发的Maven教程,因为环境是通过Maven依赖导入的。
1.Spring环境搭建
频繁导入包很麻烦所以直接用Maven仓库,下面是我的编程环境(如果学习当中出现代码正确却运行不起来的情况,多半是版本不对应,我同学就在一直换版本)
-
jdk 11.0.8
-
idea 2020.1(包含激活插件)
链接:https://pan.baidu.com/s/1KzwGq2azLBf_2o7tQiMwSg?pwd=csdn
提取码:csdn -
maven 3.8.4
2.第一个Spring程序
-
新建项目
-
配置项目名称、位置和GAV(group、ArtifactId、Version)
- 选择Maven仓库位置
可以配置一下默认Maven仓库地址,不用每次新建项目都重新配置了,具体步骤如下:
-
file–>new projects setting–>setting for new projects
-
Builds,Execution,Deployment–>Maven
-
成功文件结构如图:
如果找不到文件目录并报了如下警告:No archetype found in remote catalog. Defaulting to internal catalog
参考: https://blog.csdn.net/qq_45925787/article/details/123721599
-
修改配置参数:
-
工程新建的时候选的jdk 11
-
模块jdk也要改为一样的版本(电脑里只有一个版本的jdk的话一般不会出错):选中项目名+<kbd>f4</kbd>
-
修改pom.xml文件:
<properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> //这两项文本值修改为jdk版本,不然后面可能会出错 <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> </properties>
-
-
通过Maven引入spring依赖:
Maven规定世界上任何一个构件都可以使用Maven坐标并作为一位标识,所以大部分依赖都可以在https://mvnrepository.com/中找到
- 在网站首页搜索要添加的依赖
- 在详情页最下面复制坐标
- 粘贴到项目的pom.xml中指定位置
- 引用完之后是爆红的,点击右上角m图标,第一次引入比较慢因为他要下载到本地仓库
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
//我准备用同一个版本号,所以我定一个一个spring版本号,下面直接引用这个版本号
<spring.version>5.3.15</spring.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<!--日志-->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
</dependency>
<!--我在这里引用了6个,不知道的可以都引一遍-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>${spring.version}</version>
</dependency>
</dependencies>
-
新建资源文件夹(使用Maven会约定好,存放bean的位置)
- 右键src–>new–>diretory–>main\resources
-
在main/java/组id的包里新建java文件:
package org.example; public class HelloWorld { private String message; public void setMessage(String message) { this.message = message; } public void getMessage() { System.out.println("message : " + message); } }
-
在资源文件夹中新建名为beans的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" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> <bean id="helloworld1" class="org.example.HelloWorld"> <property name="message" value="Hello World1!" /> </bean> <bean id="helloworld2" class="org.example.HelloWorld"> <property name="message" value="Hello World2!" /> </bean> </beans>
-
在APP测试:
package org.example; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; /** * Hello world! * */ public class App { public static void main( String[] args ) { //创建上下文对象,读取配置文件,bean工厂 ApplicationContext context=new ClassPathXmlApplicationContext("Beans.xml"); //创建Bean HelloWorld bean1= (HelloWorld) context.getBean("hello1"); HelloWorld bean2=context.getBean("hello2",HelloWorld.class); bean1.getMessage(); bean2.getMessage(); } }
输出结果:
message:Hello World1! message:Hello World2!
- 点赞
- 收藏
- 关注作者
评论(0)