码迷,mamicode.com
首页 >  
搜索关键字:xsd schema    ( 5371个结果
MYSQL注入
SQL注入的几张表: 一、information_schema库: 1、在mysql5.0版本后,默认数据库存放在这个数据库中,该库中常用的三个表schemata、tables、columns 2、schemata表存储的是该用户创建的所有数据库中的库名,记录数据库的字段名为schema_name ...
分类:数据库   时间:2020-05-18 01:01:13    阅读次数:97
spring boot @propertySource @importResource @Bean [六]
@propertySource 指定property的配置源。 创建一个person.property: 然后修改person注解; 在运行test之后,结果为: @importResource 这个importResource是用来兼容spring的。 HelloService: beans.xm ...
分类:编程语言   时间:2020-05-17 21:51:52    阅读次数:63
Java基础XML相关
模拟Servlet: 为了灵活实现的不同路径(/hello)执行不同的资源( HeIIoMyServlet)我们需要使用XML进行配置;为了限定XML内容,我们需要使用xml约束(DTD或schema);为了获得xml的内容,我们需要使用dom4j进行解析。然后可以通过反射进行创建对象,获取其中的方 ...
分类:编程语言   时间:2020-05-17 21:51:34    阅读次数:75
SpringMVC=>applicationContext.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 ...
分类:移动开发   时间:2020-05-16 15:17:24    阅读次数:72
.Net Core NLog 配置
NLog.config <?xml version="1.0" encoding="utf-8" ?> <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSc ...
分类:Web程序   时间:2020-05-15 11:36:18    阅读次数:82
ABP .net core集成访问Oracle数据库
1.添加包引用: Microsoft.EntityFrameworkCore.RelationalOracle.EntityFrameworkCore2.重写DbContext OnModelCreating /// <summary> /// 判断如果是Oracle,需要执行Schema /// ...
分类:数据库   时间:2020-05-14 01:52:10    阅读次数:134
mysql 查询每个表分别有多少条记录
use information_schema; select table_name,table_rows from tables where TABLE_SCHEMA = '数据库的名称' order by table_rows desc; ...
分类:数据库   时间:2020-05-13 15:20:03    阅读次数:88
同步表结构 mysql-schema-sync
文档地址:https://github.com/hidu/mysql-schema-sync 安装go get -u github.com/hidu/mysql-schema-sync 使用范例:mysql-schema-sync -source "root:123456@(127.0.0.1:33 ...
分类:数据库   时间:2020-05-12 20:33:05    阅读次数:87
AOP的三种实现方式之一通过xml配置文件实现
1. 在配置文件中导入AOP依赖 xmlns:aop="http://www.springframework.org/schema/aop" http://www.springframework.org/schema/aop http://www.springframework.org/schema ...
分类:其他好文   时间:2020-05-12 14:06:36    阅读次数:65
使用 Laravel Eloquent 的 hasMany 来开发无限极分类
在网上商城上,我们经常可以看到多级分类、子分类、甚至无限极分类。本文将向你展示如何优雅的通过 Laravel Eloquent 将其实现。 我们会创建一个微型项目来展示儿童商店的分类,总共有 5 级,如下: 数据库迁移 简单的数据表结构: Schema::create('categories', f ...
分类:其他好文   时间:2020-05-11 15:26:45    阅读次数:76
5371条   上一页 1 ... 28 29 30 31 32 ... 538 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!