`
文章列表
可以分文件配置,但是不同的配置文件里面的id是不能相同的 1.可以根据Spring的构造函数,把所有的配置文件放在一个数组里 2.可以统一命名规范,通过通配符spring-*的方式进行配置

Spring的作用域:

scope可以取值:     *singleton每次调用getBean的时候返回相同的实例     *prototype每次调用getBean的时候返回不同的实例 由以前的主动变成被动,不再是去new对象,而是需要时才去获得这个对象,对象改变不会再受影响 spring  生产实例对象和维护对象之间的关系,轻量级框架,测试方便,没有继承和实现任何接口
spring普通属性的注入: 类名为:bean1 private String strValue; private Stiing intValue; private List listValue; private Set setValue; private String[] arrayValue; private Map mapValue; (将以上的属性进行get,set) 配置文件的配置: <bean id="bean1" class="com.bjsxt.spring.Bean1">   <property name=&qu ...
1、使用include引入多个配置文件 2、在web.xml中配置 <filter> <filter-name>struts2 </filter-name> <filter-class>org.apache.struts2.dispatcher.FilterDispatcher </filter-class> <init-param> <param-name>config </param-name> <param-value>struts-default.xml,struts-plugi ...
List对象转成Gson字符串(两种方式) (1)使用Gson gson=new Gson()类中的  gson.toJson(list);方法 案例 (ajax+json+jquery 省市县级联): 后台代码: package com.zz.jquery; import java.io.IOException; import java.io.PrintWriter; import java.util.ArrayList; import java.util.List; import javax.servlet.ServletException; import javax.servl ...
Global site tag (gtag.js) - Google Analytics