码迷,mamicode.com
首页 >  
搜索关键字:spring data mongodb    ( 115491个结果
Mac下浏览器跨域配置方法
open -n /Applications/Google\ Chrome.app/ --args --disable-web-security --user-data-dir=/Users/hooliy/Documents/MyChromeDevUserData open -n /Applicati ...
分类:系统相关   时间:2021-04-21 11:49:55    阅读次数:0
JasperReports with Spring
1. Overview JasperReports is an open source reporting library that enables users to create pixel-perfect reports that can be printed or exported in ma ...
分类:编程语言   时间:2021-04-21 11:48:33    阅读次数:0
Spring Boot:The field file exceeds its maximum permitted size of 1048576 bytes
Spring Boot:The field file exceeds its maximum permitted size of 1048576 bytes. 解决方法一: 根据spring boot 版本不同在application文件添加不同的配置 Spring Boot 1.3 或之前的版本: ...
分类:编程语言   时间:2021-04-21 11:47:02    阅读次数:0
数据仓库之数据模型
数据仓库之数据模型 关于数据仓库的概念,这里不再累赘。先看下面的图(数据仓库建设的7个主要环节): 本文,主要针对第三块数据仓库模型设计来讨论交流,尤其是互联网行业。 一、关于数据仓库数据模型 1. 数据仓库数据模型是指使用实体、属性及其关系对企业运营和逻辑规则进行统一的定义、编码和命名;是业务人员 ...
分类:其他好文   时间:2021-04-20 15:42:53    阅读次数:0
Spring-拦截器学习
Spring-拦截器学习 拦截器概述 SpringMVC的处理器拦截器类似于Servlet开发中的过滤器Filter,用于对处理器进行预处理和后处理。开发者可以自己定义一些拦截器来实现特定的功能。 **过滤器与拦截器的区别:**拦截器是AOP思想的具体应用。 过滤器 servlet规范中的一部分,任 ...
分类:编程语言   时间:2021-04-20 15:41:50    阅读次数:0
Introduction to tensorflow
Now our job as programmers changes from figuring out the rules, to determining the activities, to writing the code that matches the data to the labels ...
分类:其他好文   时间:2021-04-20 15:41:14    阅读次数:0
pytorch中DataSet和DataLoader的使用详解
1. 首先导入需要用到的包 from torch.utils.data import DataLoader,Dataset 2. 自定义Dataset 一般情况下我们使用Dataset,需要自定义一个类来继承Dataset,然后实现__getitem__()方法和__len__()方法 使用示例如下 ...
分类:其他好文   时间:2021-04-20 15:34:35    阅读次数:0
Spring事务小记
1. 事务的传播属性 1. REQUIRED:默认属性,如果当前已有事务,则加入并且忽略自身的设置,否则自己创建一个新的事务 2. MANDATORY:支持当前事务,若当前没有事务则抛出异常 3. NEVER:以非事务方式运行,如果当前存在事务,则抛出异常 4. NOT_SUPPORTED:以非事务 ...
分类:编程语言   时间:2021-04-20 15:26:14    阅读次数:0
十大经典排序之基数排序(C++实现)
#基数排序 也是采用分桶的思想,但是加入了按位比较的思想(可以理解为每位进行一次计数排序) 思路: 计算数列中最大位数 按位数循环处理每位的排序 代码实现: #include<iterator> #include<iostream> #include<vector> using namespace ...
分类:编程语言   时间:2021-04-20 15:17:05    阅读次数:0
Java面向对象
this关键字 this关键字的作用: @Data public class jtest { private String name; public jtest(){ //调用构造方法,只能在构造方法中使用,且必须是第一行 this("dwx"); } public jtest(String nam ...
分类:编程语言   时间:2021-04-20 15:11:01    阅读次数:0
115491条   上一页 1 ... 80 81 82 83 84 ... 11550 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!