Easter79 Easter79
3年前
tio
本文讲述如何快速将tio服务整合到SpringBoot项目首先,你需要在pom.xml中引入tiocorespringbootstarter构件<dependency<groupIdorg.tio</groupId<artifactIdtiocorespringboot
Wesley13 Wesley13
3年前
android ContextMenu 上下文菜单示例
ch2\_contextmenu.xml:<?xmlversion"1.0"encoding"utf8"?<LinearLayoutxmlns:android"http://schemas.android.com/apk/res/android"android:layout_width"match_p
Wesley13 Wesley13
3年前
android Notification 状态栏通知使用示例
ch7\_notification.xml:<?xmlversion"1.0"encoding"utf8"?<LinearLayoutxmlns:android"http://schemas.android.com/apk/res/android"android:layout_width"match_
Wesley13 Wesley13
3年前
MySQL数据库的安装与使用
MySQL数据库概要一、MySQL数据库的概述二、MySQL数据库的搭建(重点)三、MySQL数据库软件的使用四、MySQL数据类型五、MySQL数据库数据的操作(重点)一、初识MySQL数据库1\.数据库的概述
Wesley13 Wesley13
3年前
mysql 初始语句
1.创建数据库》》》CREATEDATABASE数据库名;(createdatabase) 结尾加分号》》》setnamesgbk;2.查看数据库列表》》》SHOWDATABASES;(showdatabase)3.选择数据库》》》USE数据库名;4.删除数据库》》》DROPDATABASE数据库名;(dropdatab
Wesley13 Wesley13
3年前
activemq安全设置 设置admin的用户名和密码
ActiveMQ使用的是jetty服务器,打开conf/jetty.xml文件,找到<beanid"securityConstraint"class"org.eclipse.jetty.http.security.Constraint"    <propertyname"name"value"BASIC"/ 
Stella981 Stella981
3年前
Spring Boot中整合Sharding
在我《SpringCloud微服务全栈技术与案例解析》书中,第18章节分库分表解决方案里有对ShardingJDBC的使用进行详细的讲解。之前是通过XML方式来配置数据源,读写分离策略,分库分表策略等,之前有朋友也问过我,有没有SpringBoot的方式来配置,既然已经用SpringBoot还用XML来配置感觉有点不协调。其实吧我个人觉得只
Stella981 Stella981
3年前
Ehcache配置详解与SpringBoot整合实例
1\.配置1.1基本配置下面基本算是使用Ehcache的xml最简配置了。<?xmlversion"1.0"encoding"UTF8"?<ehcachename"mycachemanager"updateCheck"false"<!磁盘缓存位置
Wesley13 Wesley13
3年前
MySQL 常用命令
假如新建数据库lily创建数据库 createdatabaselily; 显示所有数据库 showdatabases;选择数据库 uselily;删除数据库dropdatabaselily;删除数据库deletedatabaselily;删除数据表: