摘要:
一、注解方式加载 创建配置类: package com.wbg.springAnnotaion.config; import org.springframework.context.annotation.Configuration; import org.springframework.contex 阅读全文
摘要:
方式一:继承WebMvcConfigurerAdapter类 1、使用一个类来继承 package com.wbg.springJavaConfig.spring; import org.springframework.context.annotation.Bean; import org.spri 阅读全文
摘要:
进行赋值: 阅读全文
摘要:
首先创建类、接口、数据库: package com.wbg.springJavaConfig.entity; public class Admin { private int aId; private String aAccount; private String aPassword; privat 阅读全文
摘要:
通过注解实现ServiceImpl业务 一、使用@Component装配Bean 1、 定义类:User 在类上面加@Component注解,在属性上面加@Value值 package com.wbg.springxmlbean.entity; import org.springframework. 阅读全文
摘要:
使用XML装配Bean需要定义对于的XML,需要引入对应的XML模式(XSD)文件,这些文件会定义配置Spring Bean的一些元素,简单的配置如下: 创建角色类Role 类构造器有参与无参 代码: Role: package com.wbg.springxmlbean.entity; publi 阅读全文
摘要:
后台注解 前台: 加个事件 @on-change 阅读全文
摘要:
使用filter过滤器进行过滤 arr数组: [ { id: 1, name: 'ohzri', birth: '1999.09.09', city: '湖北', salary: 9379 }, { id: 2, name: 'rqgfd', birth: '1999.10.28', city: ' 阅读全文
摘要:
IoC:控制反转(Inversion of Control) 没有IoC的程序中我们使用面向对象编程对象的创建与对象间的依赖关系完全硬编码在程序中,对象的创建由程序自己控制,控制反转后将对象的创建转移给第三方 所谓控制反转就是:获得依赖对象的方式反转了。 IoC是Spring框架的核心内容,使用多种 阅读全文
摘要:
.. public static void main(String[] args) { int [] data = {7,10,25,66,80,446,555,10,2,8}; int j ; int tem ; for (int i = 1; i < data.length; i++) { j 阅读全文