首页 技术 正文
技术 2022年11月11日
0 收藏 388 点赞 2,861 浏览 1871 个字

准备工作


1、使用IDEA2018专业版,

我试了IDEA2019教育版和IDEA2020社区版,都无法顺利创建一个Spring项目,实在是恼火,一气之下,统统卸载掉。

重装了一个IDEA2018专业版,突然就变得很顺利了。

2、在IDEA中安装Spring插件

点击File–settings–Plugins,搜索“Spring”,安装Spring Assistant。

新建Spring项目


1、新建项目:New–Project,选择Spring

项目名为“hellospring”

IDEA有一个好处,当你创建spring项目时,它会自动下载所需要的spring包。

2、右键src,创建一个包(Package),名字叫作"hello"吧。

3、在hello包下创建两个class源文件:HelloWorld.java MainApp.java

其中,HelloWorld.java 中写入:

package hello;public class HelloWorld {
private String message;
public void setMessage(String message){
this.message = message;
}
public void getMessage(){
System.out.println("Your Message : " + message);
}
}

MainApp.java中写入:

package hello;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;public class MainApp {
public static void main(String[] args) {
ApplicationContext context =
new ClassPathXmlApplicationContext("Beans.xml");
HelloWorld obj = (HelloWorld) context.getBean("helloWorld");
obj.getMessage();
}
}

上面MainApp.java文件里,有一个Beans.xml

这是一个配置文件,需要手动创建它。

4、创建配置文件Beans.xml

右键src–New–XML Configuation File–Spring Config

命名为Beans,点击确定。

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.xsd"> <bean id="helloWorld" class="hello.HelloWorld">
<property name="message" value="Hello World!"/>
</bean></beans>

其实我们需要添加的只有这三行:

<bean id="helloWorld" class="hello.HelloWorld">
<property name="message" value="Hello World!"/>
</bean>

class 属性表示需要注册的 bean 的全路径,这里就是HelloWorld.java的文件路径

id 则表示 bean 的唯一标记。

这里的value中的值,就是输出到屏幕上的内容。

此时的目录结构如下:

忽略掉out目录,那是程序运行之后自动生成的。

运行MainApp.java文件

输出结果如下:

试一下,修改value中的值,比如,改成下面这样:

<bean id="helloWorld" class="hello.HelloWorld">
<property name="message" value="你好,Spring!"/>
</bean>

再运行MainApp.java,结果如下:

就这样,成功创建了第一个Spring程序。

每天学习一点点,每天进步一点点。

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:8,997
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,511
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,356
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,139
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,770
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,848