Spring 基础
Posted 【唐】三三
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring 基础相关的知识,希望对你有一定的参考价值。
Helloworld.class
public class Helloworld {
private String name;
public void setName(String name) {
System.out.println("setName:"+name);
this.name = name;
}
public void hello(){
System.out.println("hello:"+name);
}
}
输出
public static void main(String[] args) {
// Helloworld helloworld = new Helloworld();
// helloworld.setName("tangsan");
// helloworld.hello();
//1.创建Spring的IOC容器对象
ApplicationContext context =
new ClassPathXmlApplicationContext("applicationContext.xml");
//2.从IOC获取 Bean 实例
Helloworld hello = (Helloworld)context.getBean("helloWorld");
hello.hello();
}
以上是关于Spring 基础的主要内容,如果未能解决你的问题,请参考以下文章
Spring boot:thymeleaf 没有正确渲染片段
What's the difference between @Component, @Repository & @Service annotations in Spring?(代码片段
[vscode]--HTML代码片段(基础版,reactvuejquery)
spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段
Spring Rest 文档。片段生成时 UTF-8 中间字节无效 [重复]
解决spring-boot启动中碰到的问题:Cannot determine embedded database driver class for database type NONE(转)(代码片段