idea创建HelloSpring(maven项目)
1.创建一个maven项目
打开idea,new–>Project–>maven–>next—>填写项目名称。
2.导入maven的jar包
在pom.xml中导入jar包。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>spring-study</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>spring-01</module>
<module>spring-02</module>
</modules>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.2.7.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.2.7.RELEASE</version>
</dependency>
</dependencies>
</project>
3.新建一个Hello的实体类
在java目录下创建package包com.sw.entity。目录结构如下:
在entity包下新建一个Hello实体类。重写tostring方法。
package com.sw.entity;
public class Hello {
private String str;
public String getStr() {
return str;
}
public void setStr(String str) {
this.str = str;
}
@Override
public String toString() {
return "Hello{" +
"str='" + str + '\'' +
'}';
}
}
4.新建一个ApplicationContext.xml
在resources目录下创建一个ApplicationContext.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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="hello" class="com.sw.entity.Hello">
<property name="str" value="Hello Spring"/>
</bean>
</beans>
id=“hello” 唯一标识符
class=“com.sw.entity.Hello” 对象所对应的全限定名
name=“str” 实体类中的对象
value=“Hello Spring” 给对象赋值
5.创建MyTest进行测试
MyTest.java 目录如下
import com.sw.entity.Hello;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class MyTest {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("ApplicationContext.xml");
Hello hello = (Hello) context.getBean("hello");
System.out.println(hello.toString());
}
}
运行main方法,输出Hello{str=‘Hello Spring’}