码迷,mamicode.com
首页 >  
搜索关键字:factor    ( 2060个结果
Mybatis-02
一、 1、使用Map作为参数类型 当实体类或数据库表中的字段或参数过多时,如果要向表中插入添加或其他操作时使用实体类对象会比较繁琐,因为对象的参数太多。先理解这样一个设计方式,不正规但实用。 //向角色表中新增一个角色名--接口 int addUser2(Map<String,Object> map ...
分类:其他好文   时间:2020-06-22 01:05:09    阅读次数:56
23种设计模式-适配器模式
实例分析: USB接口的电脑 通过转换器 将普通网线输入转换成USB接口输入上网。 需要一个网线类 Adaptee package factory.adapter; //要被适配的类: 网线 public class Adaptee { public void request(){ System.o ...
分类:其他好文   时间:2020-06-21 09:17:03    阅读次数:44
Eureka注册中心添加IP限制
注册中心需要限制固定的IP才能进行注册,通过下面的操作可以实现: import java.util.List; import com.netflix.eureka.lease.Lease; import org.slf4j.Logger; import org.slf4j.LoggerFactory ...
分类:其他好文   时间:2020-06-20 17:00:40    阅读次数:198
idea
*.cmd;*.hprof;*.iml;*.log;*.md;*.pyc;*.pyo;*.rbc;*.yarb;*~;.DS_Store;.apt_generated;.classpath;.factorypath;.git;.hg;.idea;.metadata;.mvn;.project;.se ...
分类:其他好文   时间:2020-06-19 22:41:27    阅读次数:64
Spring整合MyBatis
1)导入依赖 mybatis-spring mybatis的Spring兼容包,帮助Spring整合MyBatis <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> <version ...
分类:编程语言   时间:2020-06-19 21:20:45    阅读次数:70
Springboot2.X中使用Redis
使用redis之前,首先要安装redis服务,确保服务正常启动,redis-cli客户端能连接上。springboot集成redis上手快,简单几步就可以搞定。 首先,引入springboot集成redis的依赖: springboot集成redis依赖坐标: <dependency> <group ...
分类:编程语言   时间:2020-06-19 11:48:37    阅读次数:50
springboot-java
1. 获取Springboot容器Bean对象调用业务方法 package com.example.springboot; import com.example.springboot.service.StudentService; import org.springframework.boot.Sp ...
分类:编程语言   时间:2020-06-14 11:20:43    阅读次数:74
线程池创建
package net.icarefx.booking.util.threadpool; import java.util.concurrent.ArrayBlockingQueue;import java.util.concurrent.Callable;import java.util.conc ...
分类:编程语言   时间:2020-06-14 00:53:45    阅读次数:90
Scrapy 爬虫
一、安装 centos7:https://www.jb51.net/article/136478.htm a.pip3 install wheel b.pip3 install Twisted c.pip3 install pywin32 d.pip3 install scrapy 测试是否安装成功 ...
分类:其他好文   时间:2020-06-13 21:17:54    阅读次数:51
求一个数的因子之和
直接求解 LL factor(LL x){ LL cnt = 0; for(int i=1;i<=sqrt(x);i++){ if(x%i==0){ if(x/i == i) cnt += i; // ex: 9 = 3 * 3 else cnt += i + x/i; } } return cnt ...
分类:其他好文   时间:2020-06-13 21:08:25    阅读次数:98
2060条   上一页 1 ... 10 11 12 13 14 ... 206 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!