Spring笔记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring笔记相关的知识,希望对你有一定的参考价值。

1、安装Spring Tool Sui

登录http://spring.io/tools/sts/all 下载所需的Spring Tool Suit安装包

下载完成后

Eclipse --- Help--- Install new Sofware

点击Add按钮 ,再点击Archive 选择你刚刚下载的zip文件

选择带有“Spring IDE”字样的项,一个4个:

技术分享

最好取消联网更新,否则会很慢

技术分享

2、加Maven

参考http://projects.spring.io/spring-framework/

<dependencies>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>4.2.4.RELEASE</version>
    </dependency>
</dependencies>

 3、范例

src下新建Spring Bean Configuration File,命名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 http://www.springframework.org/schema/beans/spring-beans.xsd">
    <!-- 配置bean -->
    <bean id="helloWorld" class="com.mycompany.app.my_webapp.HelloWorld">
    <property name="name" value="Colin2"></property>
    </bean>
</beans>

 

以上是关于Spring笔记的主要内容,如果未能解决你的问题,请参考以下文章

初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段

Spring boot:thymeleaf 没有正确渲染片段

What's the difference between @Component, @Repository & @Service annotations in Spring?(代码片段

spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段

Spring Rest 文档。片段生成时 UTF-8 中间字节无效 [重复]

解决spring-boot启动中碰到的问题:Cannot determine embedded database driver class for database type NONE(转)(代码片段