码迷,mamicode.com
首页 >  
搜索关键字:application cache    ( 22759个结果
设置MySQL密码
简单设置环境变量,以及密码 1.把mysql命令加入环境变量 [root@master01 ~]# vim /etc/profile.d/mysql.sh #!/bin/bash export MYSQL=/application/mysql export PATH=$PATH:$MYSQL/bin ...
分类:数据库   时间:2021-06-20 18:49:27    阅读次数:0
安装Nginx后不能访问虚拟机中的浏览器解决办法
首先检查Nginx是否启动成功 [root@web1 extra]# ps aux|grep nginx (一切正常)root 3269 0.0 0.1 46764 1464 ? Ss 09:34 0:00 nginx: master process nginx -c /application/ng ...
分类:其他好文   时间:2021-06-20 18:09:23    阅读次数:0
SpringBoot2配置文件application.yaml
源码基于SpringBoot 2.4.4 1、认识配置文件 1.1 配置文件的加载 创建SpringBoot项目的时候,会自动创建一个application.properties文件,该文件是SpringBoot默认的配置文件。 SpringBoot在启动的时候会默认去寻找并加载applicatio ...
分类:移动开发   时间:2021-06-19 19:25:15    阅读次数:0
线性回归房价预测
线性回归 房价预测 跟着李沐的动手学深度学习,跟着写了一遍房价预测的处理和预测,加了一些注释,同时稍微改动了一些地方 import hashlib import os import tarfile import zipfile import requests DATA_HUB = dict() DA ...
分类:其他好文   时间:2021-06-19 18:54:00    阅读次数:0
Creating Splash Screen in WPF
Introduction# When WPF application launched, it could take a while for a current language runtime (CLR) to initialize .NET Framework. As a result, fir ...
分类:Windows程序   时间:2021-06-17 17:20:33    阅读次数:0
springboot整合mybatis增删查改
1.选择依赖 SpringWeb,JDBC API, MybatisFramework, MysqlDriver 2.application.yml 将 application.properties改为application.yml(使用更简洁), application.yml文件内容如下: se ...
分类:编程语言   时间:2021-06-17 17:15:52    阅读次数:0
06-SpringBoot配置绑定
1.5 注解@ConfigurationProperties进行组件属性和资源配置文件中的值进行绑定 注解@ConfigurationProperties+@Component的方式将application.properties文件中的值绑定到某个组件的属性上。注意现在默认只能是绑定核心资源配置文件 ...
分类:编程语言   时间:2021-06-17 17:11:28    阅读次数:0
【Oracle】Library Cache的基本结构
图解Library Cache 结构说明 Hash Bucket 库缓存相当于一个Hash Table由一组Hash Bucket构成,每个Hash Bucket存储相同哈希值的所有库缓存对象句柄,不同库缓存对象句柄间用指针连接,构成库缓存对象句柄链表(Library Cache Object Ha ...
分类:数据库   时间:2021-06-17 16:53:37    阅读次数:0
【代码生成器-01】准备工作(未完成)
初步设想 目标 Furion框架下,生成符合DDD要求的CRUD代码,可视化定义生成各种有章法的代码。 结构 ├ Domain ├ Xxxs Xxx.cs IXxxManager.cs XxxManager.cs ├ Application IXxxService.cs XxxService.cs ...
分类:其他好文   时间:2021-06-17 16:46:15    阅读次数:0
springcloud 使用feign
一,被调用方 web-test spring: application: name: web-test 二,web-test准备接口 package com.tenyears.webTest.controller; import org.springframework.beans.factory.a ...
分类:编程语言   时间:2021-06-16 17:34:00    阅读次数:0
22759条   上一页 1 2 3 4 5 6 ... 2276 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!