先看看spring的bean作用域有几种,分别有啥不同。 spring bean作用域有以下5个: singleton:单例模式,当spring创建applicationContext容器的时候,spring会欲初始化所有的该作用域实例,加上lazy-init就可以避免预处理; prototype: ...
分类:
编程语言 时间:
2019-09-03 09:38:45
阅读次数:
106
SSM配置文件 Spring配置文件:applicationContext.xml 1.ioc组件扫描,扫描service 2.加载properties文件 3.配置数据源信息 4.配置sqlSessionFactory工厂 5.扫描mapper所在的包,为mapper创建实现类 6.声明式事务控制 ...
分类:
其他好文 时间:
2019-09-02 09:26:49
阅读次数:
88
springdata jpa Spring Data JPA是Spring提供的一套对JPA操作的封装,是在JPA规范下的专门用来进行数据持久化的解决方案。 quick start pom.xml springdata jpa 整合 spring applicationContext.xml 可以通 ...
分类:
其他好文 时间:
2019-09-01 16:19:39
阅读次数:
74
1.SSM框架的简单配置 1.1 引入jar 1.2 web.xml配置文件 1.2.1在工程的classpath下创建两个配置文件 1.2.2web.xml的配置 注意:/ 和 / 的区别 1.3 applicationContext.xml 1.4 springMvc.xml 1.5 mybat ...
分类:
其他好文 时间:
2019-09-01 12:26:32
阅读次数:
66
一、创建服务端发布服务 1. 添加依赖 2. 创建服务接口 3. 创建服务接口实现 4. 配置web.xml 5. 配置applicationContext-cxf.xml 6. 启动项目发布服务 二、创建客户端调用服务 ...
分类:
编程语言 时间:
2019-08-30 14:39:35
阅读次数:
118
方法一:在初始化时保存ApplicationContext对象 方法二:通过Spring提供的utils类获取ApplicationContext对象 方法三:继承自抽象类ApplicationObjectSupport 方法四:继承自抽象类WebApplicationObjectSupport 方 ...
分类:
编程语言 时间:
2019-08-29 23:30:51
阅读次数:
100
springboot启动报错:"Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled." 报错内容 java.lang.Obje ...
分类:
移动开发 时间:
2019-08-27 11:06:47
阅读次数:
345
1..分页操作使用MyBatis的PageHelper 1>导入pageHelper的坐标 2>在applicationContext.xml的 sqlSessionFactory 中配置Pagehelper 3>在业务层调用分页方法传入页数和每页的记录数 4.在数据返回页面之前将数据封装到Page ...
分类:
其他好文 时间:
2019-08-26 19:20:04
阅读次数:
103
7个构造方法 //无参构造方法 public FileSystemXmlApplicationContext() { } /** * 传入父上下文 * @param parent */ public FileSystemXmlApplicationContext(ApplicationContext ...
分类:
移动开发 时间:
2019-08-26 19:18:45
阅读次数:
77
一:spring的配置文件,即XML文件不需要必须写,也可以通过配置文件类进行相关配置 基于注解的SpringAop,虽然都使用注解在代码类中进行配置,但是它的ApplicationContext.xml还是会用到下面这两个配置 <context:component-scan base-packag ...
分类:
编程语言 时间:
2019-08-25 15:51:01
阅读次数:
74