码迷,mamicode.com
首页 >  
搜索关键字:最小化spring xml配置    ( 4489个结果
mybatis的工作原理
由以上图可以看出,mybatis框架在操作数据库时大致经过了8个步骤。对这8个步骤分析如下: 1)读取mybatis配置文件mybatis-config.xml。mybatis-config.xml配置文件作为mybatis的全局配置文件,配置了mybatis的运行环境等信息,其中主要内容是获取数据 ...
分类:其他好文   时间:2020-06-20 11:21:07    阅读次数:202
Mybatis 基础篇(二)-- 深入了解 XML 配置(environments)
原文链接:Mybatis 基础篇(二)-- 深入了解 XML 配置(environments) environments(环境配置) Mybatis 支持配置多环境,但是请记住每个 SqlSessionFactory 实例只能选择一种环境。如果需要使用到多个环境,则需要多个 SqlSessionFa ...
分类:其他好文   时间:2020-06-20 00:57:50    阅读次数:41
Mybatis 基础篇(一)-- 深入了解 XML 配置(概述)
原文链接:Mybatis 基础篇(一)-- 深入了解 XML 配置(概述) 回顾一下,上篇文章《Mybatis 入门篇 --手把手教你使用 Mybatis 操作数据库》已经帮助读者成功使用 Mybatis 操作数据库。今天的话题,给 mybatis-config.xml 开刀,深入了解 XML 配置 ...
分类:其他好文   时间:2020-06-20 00:37:46    阅读次数:60
SpringMVC(六)——文件上传和下载
文件上传 1.需要导包 commons-fileupload commons-io 2.请求方法的参数 MultipartFile类,全称org.springframework.web.multipart.MultipartFile。主要方法有 3.在springmvc-config.xml配置文件 ...
分类:编程语言   时间:2020-06-17 23:28:12    阅读次数:70
Docker:docker安装部署jenkins
查看docker的jenkins镜像版本 #查看jenkins版本命令 docker search jenkins [root@localhost docker]# docker search jenkins NAME DESCRIPTION STARS OFFICIAL AUTOMATED jen ...
分类:其他好文   时间:2020-06-17 18:11:05    阅读次数:54
pom.xml配置指定仓库
<repositories> <repository> <id>central</id><--中央仓库--> <url>http://uk.maven.org/maven2/</url> <layout>default</layout> </repository> <repository> <id> ...
分类:其他好文   时间:2020-06-16 15:16:54    阅读次数:106
SpringMVC框架搭建流程(完整详细版)
SpringMVC框架搭建流程 开发过程 1)配置DispatcherServlet前端控制器 2)开发处理具体业务逻辑的Handler(@Controller、 @RequestMapping) 3) xml配置?件配置controller扫描,配置springmvc三?件 4)将xml?件路径告 ...
分类:编程语言   时间:2020-06-15 21:16:18    阅读次数:74
Spark Scala 将数据保存到Mysql
1添加pom.xml配置 <build> <sourceDirectory>src/main/scala</sourceDirectory> <testSourceDirectory>src/test/scala</testSourceDirectory> <plugins> <plugin> <g ...
分类:数据库   时间:2020-06-14 18:56:57    阅读次数:138
Spring IOC 知识点总结
@Configuration配置spring并启动spring容器 @Configuration用于定义配置类,标注在类上,相当于把该类作为spring的xml配置文件中的<beans>,作用是用于配置spring容器(应用上下文) 实例说明: 配置类 @Configuration public c ...
分类:编程语言   时间:2020-06-14 12:32:24    阅读次数:49
SpringMVC零xml配置原理
前言: 我们使用springmvc时,每次都要去配置web.xml,spring-mvc.xml,甚至和spring整合时候,还要配置spring.xml。用起来比较麻烦,用过springboot的朋友应该知道,springboot中使用springmvc时候就不会去指定xml。那这样的操作是怎么实 ...
分类:编程语言   时间:2020-06-13 21:35:58    阅读次数:57
4489条   上一页 1 ... 12 13 14 15 16 ... 449 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!