Easter79 Easter79
3年前
sublime配置python运行环境
1.sublime下载与插件管理1.1下载官网地址:https://www.sublimetext.com/3(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fwww.sublimetext.com%2F3)1.2安装Pac
Easter79 Easter79
3年前
SpringBoot整合mybatis、shiro、redis实现基于数据库的细粒度动态权限管理系统实例
1.前言本文主要介绍使用SpringBoot与shiro实现基于数据库的细粒度动态权限管理系统实例。使用技术:SpringBoot、mybatis、shiro、thymeleaf、pagehelper、Mapper插件、druid、dataTables、ztree、jQuery开发工具:intellijidea数据库:mys
Stella981 Stella981
3年前
HBase 在HDFS上的物理目录结构
根目录配置项<namehbase.rootdir</name默认“/hbase”根级文件/hbase/WALs被HLog实例管理的WAL文件。/hbase/WALs/datahbase.com,60020,1443159380730对于每个HregionServer,日志目录中都包含一个对应的子目录
Stella981 Stella981
3年前
Debian 9.4 下如何安装 phpmyadmin
首先进入管理员模式,su,回车,输入密码;aptgetinstallphpmyadmin;系统会下载相关文件,并询问是否安装phpmyadmin,输入y,会进入如下界面;!Debian9.4下如何安装phpmyadmin(http://p3.pstatp.com/large/pgcimage/1533
Stella981 Stella981
3年前
SpringBoot整合mybatis、shiro、redis实现基于数据库的细粒度动态权限管理系统实例
1.前言本文主要介绍使用SpringBoot与shiro实现基于数据库的细粒度动态权限管理系统实例。使用技术:SpringBoot、mybatis、shiro、thymeleaf、pagehelper、Mapper插件、druid、dataTables、ztree、jQuery开发工具:intellijidea数据库:mys
Wesley13 Wesley13
3年前
Spring学习详解(1)——Spring入门详解
一:spring的基本用法:1,关于spring容器:spring容器是Spring的核心,该容器负责管理spring中的java组件,ApplicationContextctx newClassPathXmlApplicationContext("bean.xml");//这种方式实例化容器,容器会自动预初始化所有Bean实例
Stella981 Stella981
3年前
NSFileManager终极杀手
NSFileManager想操作文件,该去了解下NSFileManager注意://小窍门:打印数组或者字典,里面包含中文,直接用%@打印会看不到中文,可用for遍历访问单例方法得到文件管理者对象NSFileManagerfileManagerNSFileManagerde
Wesley13 Wesley13
3年前
EPMS
!(https://static.oschina.net/uploads/space/2017/1110/223450_mOuZ_2632895.png)EPMS是一款面向中小微企业的SASS系统,企业项目管理系统。EPMS是在原有的OPMS(https://www.oschina.net/action/GoToLink?urlhttp%3
Wesley13 Wesley13
3年前
Java发送邮件工具类(可发送匿名邮件)
为了不想到处去下载jar包,我使用maven为我管理,在开始编码这些东西之前,我们先在pom.xml文件中<dependencies标签内加入以下内容:<! Following jars are involved by MailSender.java <dependency    <groupIdcom.su
Wesley13 Wesley13
3年前
JNA传引用调用C接口
新建一个简单的cmake管理的c工程,只包含一个MakeLists.txt和src1.cpp,内容分别如下cmake_minimum_required(VERSION3.0)project(jna_testCCXX)add_library(fooSHAREDsrc1.cpp)