简单学习完前后端分离后,搭建了一个简单的ssm环境,结果是一塌糊涂。摘录提醒一下自己 mybatis中出现的错误。 <?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3 ...
分类:
其他好文 时间:
2021-06-16 17:54:37
阅读次数:
0
一、mybatis-config.xml 1、作用 mybatis-config.xml是MyBatis核心配置文件,该文件配置了MyBatis的一些全局信息,包含数据库连接信息和Mybatis运行时所需的各种特性,以及设置和影响Mybatis行为的一些属性 2、结构 configuration配置 ...
分类:
其他好文 时间:
2021-06-16 17:51:11
阅读次数:
0
###一、spring-cloud-alibaba-gateway #####1、pom.xml <!-- gateway 路由网关依赖 webflux--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId> ...
分类:
编程语言 时间:
2021-06-15 18:39:05
阅读次数:
0
配置文件 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-ins ...
分类:
其他好文 时间:
2021-06-15 18:33:43
阅读次数:
0
8 种基本数据类型 Java 中有 8 种基本数据类型分为三大类。 字符型 char 布尔型 boolean 数值型 1.整型:byte、short、int、long 2.浮点型:float、double String 不是基本数据类型,是引用类型。 整型中 byte、short、int、long ...
分类:
编程语言 时间:
2021-06-15 18:30:02
阅读次数:
0
测试类: //测试工厂bean 单多实例 @Test public void test01(){ ApplicationContext context=new ClassPathXmlApplicationContext("503bean5.xml"); MyBean myBean1 = conte ...
分类:
其他好文 时间:
2021-06-15 18:27:08
阅读次数:
0
#### vue3 如何获取 dom 1. 通过 ref 1. 在 html 标签上指定 ref 属性 2. 在 setup 中定义并返回.注意:**标签上的 ref 属性名需要跟 setup 中的对应** ```javascript <h1 ref="msg">Welcome to vue3 ap ...
分类:
其他好文 时间:
2021-06-15 18:23:11
阅读次数:
0
文件配置 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-ins ...
分类:
Web程序 时间:
2021-06-15 17:56:45
阅读次数:
0
from turtle import * def square(size=50, rbg='blue'): pencolor(rbg) for i in range(4): fd(size) left(90) setup(800,600) speed(0) for i in range(10): s ...
分类:
其他好文 时间:
2021-06-15 17:36:49
阅读次数:
0
typeAliases配置 类型别名可以给 Java 类型设置一个简称。 它仅用于 XML 配置,意在降低冗余的全限定类名书写,因为书写类的全限定名太长了,我们希望有一个简称来指代它。类型别名在 Mybatis 中分为 系统内置 和 用户自定义 两类,Mybatis 会在解析配置文件时把 typeA ...
分类:
其他好文 时间:
2021-06-15 17:31:37
阅读次数:
0