首页 > TAG信息列表 > ndash

MyBatis动态查询

查询-多条件-动态条件查询: SQL语句会随着用户的输入或外部条件的变化而变化,我们称为动态SQL。 MyBatis对动态SQL有很强大的支撑: if choose(when,otherwise) trim(where,set) foreach 在BrandMapper.xml下面添加 <!-- 动态条件查询 * if:条件判断 * te

Java SSM整合Springmvc.xml配置文件

<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springfra

android kotlin 简单的跳转html页面

android kotlin 简单的跳转html页面 布局页面 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" andr

9.Spring AOP的纯xml模式回顾

第4节 Spring中AOP实现 需求:横切逻辑代码是打印⽇志,希望把打印⽇志的逻辑织⼊到⽬标⽅法的特定位置 (service 层 transfer ⽅法 ) 4.1 XML 模式 Spring 是模块化开发的框架,使⽤ aop 就引⼊ aop 的 jar   <!--spring aop的jar包支持--> <dependency> <groupI

ssm整合

配置文件如下 mybatis.xml <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> <configura

day03601SPRING5IOC

ioc configapplactioncontext 被入口实现, classpathXmlApplicationContext 读取配置文件方式解析注入对象 annotationConfigWebApplicationContext 通过注解获取 fileSystemXmlApplicationContext 通过文件获取解析 加载application 解析的方式很多不止DI 用xml文件方式

logback-spring.xml配置

Spring2.x过后自带日志工具就是Slf4j 使用 Spring Initializr 新建 Springboot 2.3.0.RELEASE 的项目 POM内容如下 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/

Spring事务隔离级别、传播机制、实现方式

  Spring时使用AOP来代理事务控制,针对接口和类,所以在同一个service类的两个方法的调用,传播机制不生效。 一、Spring事务隔离级别   1. ISOLATION_DEFAULT:  默认的隔离级别,使用数据库默认的事务隔离级别。   2. ISOLATION_READ_UNCOMMITTED: 未提交读,允许一个事务读取另外一

代码生成器

插件 <!--mybatis的generator插件--><plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId> <version>1.3.2</version> <configuration> <verbose>tr

mybatis之关联关系

前言:在我们之前的hibernate中我们是学过了关联关系的,所以我们在本章给讲一讲mybatis的关联关系。 mybatis的关联关系一对多的测试1.通过逆向工程生成Hbook,HbookCategory,Category如何生成,可以参考之前的这次我们要用到五张数据库表 <table schema="" tableName="t_hibernate_ord