摘要:
create table usertable( id int primary key, username varchar(32) not null, birthday date, sex char(1), address varchar(256) ); create table orders( ... 阅读全文
阅读排行榜
Spring Boot 、mybatis 、swagger 和 c3p0 整合
2018-03-09 10:34 by 甘雨路, 703 阅读, 收藏,
摘要:
文件路径如下 添加依赖 添加swagger 启动配置文件和c3p0加载文件 添加控制层 添加service层 添加service的实现层 添加实体类 添加mapper层 添加mapper 的xml配置文件 添加springboot 的启动文件 添加jsp文件 添加mybatis 配置文件 添加app 阅读全文
solr 搭建 (基于solr-5.0.0)
2017-04-21 14:27 by 甘雨路, 695 阅读, 收藏,
摘要:
1)去官网下载solr 2)去官网下载Tomcat 3)在D盘建一个文件夹(我在此建立了一个文件夹(命名为:sorl_lf)) 4)解压Tomcat(如果已经安装了Tomcat,请配置支持多个Tomcat),然后剪切到D:\sorl_lf目录下 5)解压solr 6)在solr-5.0.0\solr 阅读全文
iOS 自定义UITabBarController的tabBar
2015-12-25 21:32 by 甘雨路, 672 阅读, 收藏,
摘要:
#import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window;@end/** * 素材图片的链接: http://pan.baidu.com/s/1geahYRT 密码... 阅读全文
iOS 隐藏系统的导航,使用自定义的导航
2016-02-23 15:46 by 甘雨路, 652 阅读, 收藏,
摘要:
#import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @end #import "App 阅读全文