#mo

SpringBoot进阶教程(六十)intellij idea project下建多个module搭建架构(上)

在IntelliJIDEA中,没有类似于Eclipse工作空间(Workspace)的概念,而是提出了Project和Module这两个概念。多module有一个父maven工程,多个子工程。在多个子工程中,可能有一个web工程,也可能有多个web工程。这样的好处在于大大解耦各个module之间的关系,我们可以把ser...

注册Model类

根据username查找是否存在相同的用户名的方法自动填充功能填充注册时间字段如果两次输入的密码一直则写入数据库的方法userModel.class.php<?php/****燕十八公益PHP讲堂论坛:http://www.zixue.it微博:http://weibo.com/YshibaYY频道:883540...
代码星球 ·2020-04-05

angular指令中使用ngModelController

在这篇文章中 angular学习笔记(三十)-指令(10)-require和controller 说到了通过require属性和controller参数来让指令与指令之间互相交互.本篇主要介绍的是指令与ngModel指令的交互.也就是说,ngModel指令虽然是内置的,但它也有自己的controll...

angular-1.3 之ng-model-options指令

ng-model-options是angular-1.3新出的一个指令,这篇文章就来介绍这个指令的用法. ng-model-options允许我们控制ng-model何时进行同步.比如:1.当某个确定的事件被触发的时候2.在指定的防抖动延迟时间之后,这样视图值就会在指定的时间之后被同步到模型. 为了...

angular学习笔记(十五)-module里的'服务'

本篇介绍angular中的模块:module在笔记(二)http://www.cnblogs.com/liulangmao/p/3711047.html里已经讲到过模块,这篇主要讲模块的'服务'功能:什么是'服务'呢?看一下下面这个例子:比如一个购物车的应用:functionItemsViewController($s...

angular学习笔记(四)- input元素的ng-model属性

input元素的ng-model属性:用于将input的值和变量的值进行双向绑定<!DOCTYPEhtml><htmlng-app><head><title>2.3.1input数据绑定</title><metacharset="utf-8">&l...

win7下安装MongoDB

  1.下载下载地址:MongoDB最新版本下载在官网的DownLoad菜单下:http://www.mongodb.org/downloads 根本电脑选择32位或64位完成解压后,得到这样的文件: 这个文件夹里面包含一个名为bin文件夹和3个其他文件,3个其他文件都可以删掉....
代码星球 ·2020-04-04

Mini-Batch 、Momentum、Adam算法的实现

Mini-Batch1.把训练集打乱,但是X和Y依旧是一一对应的importnumpyasnpa=np.random.randn(3,3)print(a)b=list(np.random.permutation(3))#生成无序的数字0-2之间print(b)a_shuffled=a[b]#通过索引迭代生成打乱的apr...

Module ngx_http_v2_module

官方配置说明:http://nginx.org/en/docs/http/ngx_http_v2_module.html#example ngx_http_v2_module模块可以通过指令修改一系列配置,来调整HTTP/2性能:http2_chunk_sizeSyntax:http2_chunk_sizes...
代码星球 ·2020-04-04

java.util.ConcurrentModificationException解决详解

当我们迭代一个ArrayList或者HashMap时,如果尝试对集合做一些修改操作(例如删除元素),可能会抛出java.util.ConcurrentModificationException的异常。packagereyo.sdk.utils.test.list2;importjava.util.ArrayList;i...

List和set集合:交集、差集、合集的区别retainAll,removeAll、addAll

 set、list集合的交集(retainAll)、差集(removeAll)是没有区别的都是一样的.set、list集合的合集addAll是有区别的:set可以去重复;list不去重复 publicstaticvoidmain(String[]args){   &nb...

MonolithFirst

AsIhearstoriesaboutteamsusinga microservicesarchitecture,I'venoticedacommonpattern.Almostallthesuccessfulmicroservicestorieshavestartedwithamonoliththatgot...
代码星球 ·2020-04-04

MIT KIT OpenID Connect Demo Client

Youare NOT currentlyloggedin.Thisexampleapplicationisconfiguredwithseveralpagesrequiringdifferentlevelsofaccess.Thispagedoesnotrequiretheusertobelogge...
代码星球 ·2020-04-04

SpringBootTest MockMVC绑定session(需要登陆的接口)

 https://docs.spring.io/spring/docs/current/spring-framework-reference/testing.html#testing   spring-test+JUnit实现springMVC测试用例<dependency...

java.math.RoundingMode 几个参数详解

  java.math.RoundingMode里面有几个参数搞得我有点晕,现以个人理解对其一一进行总结:为了能更好理解,我们可以画一个XY轴RoundingMode.CEILING:取右边最近的整数RoundingMode.DOWN:去掉小数部分取整,也就是正数取左边,负数取右边,相当于向原点靠近...
首页上一页...212213214215216...下一页尾页