您的位置:首页 > 健康 > 养生 > 百度关键词优化多少钱一年_wap网站开发_广州网站优化推广方案_盛大游戏优化大师

百度关键词优化多少钱一年_wap网站开发_广州网站优化推广方案_盛大游戏优化大师

2025/1/3 10:24:02 来源:https://blog.csdn.net/qq_36437991/article/details/144834579  浏览:    关键词:百度关键词优化多少钱一年_wap网站开发_广州网站优化推广方案_盛大游戏优化大师
百度关键词优化多少钱一年_wap网站开发_广州网站优化推广方案_盛大游戏优化大师

安装eclipse

https://blog.csdn.net/qq_36437991/article/details/131644570

新建maven项目

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

安装依赖包

pom.xml

<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>com.wujialiang</groupId><artifactId>springstudy01</artifactId><version>0.0.1-SNAPSHOT</version><packaging>jar</packaging><name>springstudy01</name><url>http://maven.apache.org</url><properties><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding></properties><dependencies><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>3.8.1</version><scope>test</scope></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-core</artifactId><version>5.0.4.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-beans</artifactId><version>5.0.4.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>5.0.4.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-expression</artifactId><version>5.0.4.RELEASE</version></dependency><!-- https://mvnrepository.com/artifact/commons-logging/commons-logging --><dependency><groupId>commons-logging</groupId><artifactId>commons-logging</artifactId><version>1.2</version></dependency></dependencies>
</project>

创建代码

新建HelloSpring.java

package com.wujialiang.springstudy01;public class HelloSpring {private String userName;public String getUserName() {return userName;}public void setUserName(String userName) {this.userName = userName;}public void show() {System.out.println("您好:" + userName);}
}

src下main下新建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/beanshttps://www.springframework.org/schema/beans/spring-beans.xsd"><!-- spring创建对象实例 --><bean id="helloSpring" class="com.wujialiang.springstu001.HelloSpring"><!-- 属性赋值 --><property name="userName" value="张三"></property></bean>
</beans>

App.java代码如下

package com.wujialiang.springstudy01;import org.springframework.context.ApplicationContext;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;/*** Spring入门**/
public class App 
{public static void main( String[] args ){ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");HelloSpring helloSpring = (HelloSpring)ctx.getBean("helloSpring");helloSpring.show();((ConfigurableApplicationContext)ctx).close();System.out.println("执行完毕");}
}

结果
在这里插入图片描述

spring入门项目搭建完毕~~

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com