- 博客(5)
- 资源 (1)
- 收藏
- 关注
原创 Spring Bean生命周期回调的三种方法
Bean 的生命周期回调方法主要有两种,一种是在初始化的时候调用的,另一种是在Bean生命周期结束时调用的。主要有三种方式:1. 通过@PostConstruct和@PreDestroy注解来实现实例代码:public class UserService { @PostConstruct public void init(){ System.out.println("init----"); } @PreDestroy public void d
2021-10-27 14:42:46 695
原创 Spring实例化bean的四个方法
Spring中实例化Bean的方法通过构造方法实例化bean<?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.
2021-10-26 22:22:08 116
原创 设计模式-单例模式
懒汉式单例模式代码实现:public class SingletonMode { private static SingletonMode instance=null; //私有化构造方法,防止从外部实例化 private SingletonMode(){} public static SingletonMode getInstance(){ if(instance==null){ instance =new SingletonM
2021-10-20 10:21:28 104
原创 网络编程实例
一、三个实例1.实例:利用网络发送文字 //客户端 @Test public void client() { Socket ss = null; OutputStream outputStream = null; try { InetAddress ia = InetAddress.getByName("127.0.0.1"); ss = new Socket(ia, 8899);
2021-04-24 10:14:44 177
原创 IO流
一、 流的分类操作数据单位:字节流、字符流按照数据流向分为:输入流、输出流流的角色:节点流、处理流二、 流的体系结构抽象基类节点流(或文件流)缓冲流(处理流的一种)InputStreamFileInputStreamBufferedInputStreamOutputStreamFileOutputStreamBufferedOuputStreamReaderFileReaderBufferedReaderWriterFileWriterB
2021-04-23 16:17:41 119
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人