#菜单模块 ##Controller package com.atguigu.atcrowdfunding.controller; import java.util.List; import org.springframework.beans.factory.annotation.Autowired ...
分类:
其他好文 时间:
2020-11-02 10:21:42
阅读次数:
24
常见的是配置数据库文件, 以配置Druid连接池为例, 直接配置连接池方式如下: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi=" ...
分类:
其他好文 时间:
2020-10-31 02:06:27
阅读次数:
16
package redis.config; import org.springframework.beans.factory.annotation.Autowired;import org.springframework.data.redis.connection.DataType;import o ...
分类:
其他好文 时间:
2020-10-31 02:05:49
阅读次数:
14
importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.data.redis.core.RedisTemplate;importorg.springframework.data.redis.core.StringRedisTemplate;importorg.springframe
分类:
其他好文 时间:
2020-10-29 10:36:31
阅读次数:
27
importjava.beans.BeanInfo;importjava.beans.IntrospectionException;importjava.beans.Introspector;importjava.beans.PropertyDescriptor;importjava.beans.XMLDecoder;importjava.beans.XMLEncoder;importjava.i
分类:
其他好文 时间:
2020-10-29 10:36:06
阅读次数:
17
写下这个只是想记录一下自己的学习过程,并且提供温故知新的材料。 (一) 首先需要强调的是Beans和.xml配置文件。这两个与Spring很重要的特点IOC(控制反转)和DI(依赖注入)有关。 简单来说,可以将bean看作是一个一个组件。组件整个群体可以有很多种类,但是它们需要遵守统一的调用规则,而 ...
分类:
编程语言 时间:
2020-10-20 16:18:52
阅读次数:
25
当数据库中的列名和我们java类中的属性名不相同的时候怎么实现对象的自动封装呢? 查看下面的代码: package com.itheima.hui; import com.itheima.hui.beans.User; import com.itheima.hui.utils.JDBCUtils; ...
分类:
数据库 时间:
2020-10-19 22:45:48
阅读次数:
35
jsoncat: 仿 Spring Boot 但不同于 Spring Boot 的一个轻量级的 HTTP 框架 国庆节的时候,我就已经把 jsoncat 的 IoC 功能给写了,具体可以看这篇文章《手写“SpringBoot”近况:IoC模块已经完成》 。 今天这篇文章就来简单分享一下自己写 IoC ...
分类:
Web程序 时间:
2020-10-14 20:21:38
阅读次数:
35
上次说了spring的体系结构和概要大概有哪些模块,springioc是最核心最原始的一个框架,其实就是spring的老本,spring就是依靠着ioc,慢慢发展到其他Data,web,AOP上的。记得当初项目里面使用spring的时候,就知道配置个xml,在struts2上引用spring配置的bean,引用这个类就可以直接用了,不用直接new了,完全不管原理,确实方便但是需要配置2次,一次是s
分类:
编程语言 时间:
2020-10-09 21:05:23
阅读次数:
33
1.Spring 容器几个重要的接口 org.springframework.core.env.Environment Interface representing the environment in which the current application is running. 继承自org ...
分类:
编程语言 时间:
2020-10-09 20:48:51
阅读次数:
25