会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
栗常云
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
上一页
1
2
3
4
5
6
7
下一页
2018年9月19日
springboot-@Configuration
摘要: @Configuration 1、通过配置文件注入类 @Configuration @PropertySource("classpath:config/redis.properties") 2、注册bean 1)@Configuration+@Bean方式注册 备注1:可以使用基于 Java 的配置
阅读全文
posted @ 2018-09-19 16:04 云殇雪
阅读(19559)
评论(0)
推荐(0)
编辑
springboot-redis-单机版
摘要: 1、添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <dependency> <gr
阅读全文
posted @ 2018-09-19 15:26 云殇雪
阅读(234)
评论(0)
推荐(0)
编辑
redis安装
摘要: 下载地址:https://github.com/MicrosoftArchive/redis/releases 安装分4种(Redis临时服务、Redis默认服务安装、Redis自定义服务安装、Redis主从服务安装、Redis集群服务安装) 1、解压 2、安装 1)Redis临时服务。 进入Red
阅读全文
posted @ 2018-09-19 11:08 云殇雪
阅读(150)
评论(0)
推荐(0)
编辑
2018年9月18日
springboot-springmvc
摘要: 0依赖 1、添加代码式注解,配置springmvc 2、创建mvc的controller 3、根据代码式注解创建jsp所在目录以及文件 src/main/webapp/WEB-INF/jsp/helloworld.jsp(创建webapp目录可以参见另一随笔) 4、访问http://localhos
阅读全文
posted @ 2018-09-18 17:27 云殇雪
阅读(203)
评论(0)
推荐(0)
编辑
springboot-helloworld-eclipse
摘要: 1、eclipse安装springboot插件 2、new->Spring Start ->group:组名称;artifact:组件名称;->选中web->finish 3、复制pom文件 4、创建controller 5、运行*Application的main方法 6、访问http://loca
阅读全文
posted @ 2018-09-18 17:23 云殇雪
阅读(281)
评论(0)
推荐(0)
编辑
Springboot--关于使用webapp目录
摘要: 前我在学习springBoot集成springMVC的时候发现webapp目录, 1. 直接右键运行,访问不到页面,原来并不是不支持啊,只是默认没有把它放在编译路径里面。 我们可以在项目的package exlorer视图下,右键build path—>configure build path—>s
阅读全文
posted @ 2018-09-18 17:07 云殇雪
阅读(8152)
评论(0)
推荐(0)
编辑
2018年9月14日
eclipse-maven
摘要: maven-install报错:No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK? 解决:1、windows-java-install:导入jdk 2、win
阅读全文
posted @ 2018-09-14 10:50 云殇雪
阅读(108)
评论(0)
推荐(0)
编辑
2018年9月10日
idea安装
摘要: 1、安装包 2、本机的host文件中加入0.0.0.0 account.jetbrains.com,文件路径C:\Windows\System32\drivers\etc 3、http://idea.iteblog.com/中输入自己机器名,生成激活码 4、激活idea
阅读全文
posted @ 2018-09-10 11:51 云殇雪
阅读(218)
评论(0)
推荐(0)
编辑
2018年9月8日
windows查看端口命令
摘要: cmd中 netstat -an 显示出电脑中所有被打开的端口列表 netstat -ano 显示出所有占用端口的列表 netstat -ano | findstr "80" 显示出80端口占用的详细情况 tasklist | findstr "680" 查询端口具体哪个应用占用
阅读全文
posted @ 2018-09-08 17:47 云殇雪
阅读(40062)
评论(0)
推荐(0)
编辑
2018年9月7日
lombok
摘要: 依赖:lombok.jar 使用: 1、双击安装到eclipse安装包的目录下 2、项目引入jar包或者使用pom依赖方式引入 3、使用注解 @Log(这是一个泛型注解,具体有很多种形式) //@CommonsLog private static final org.apache.commons.l
阅读全文
posted @ 2018-09-07 11:05 云殇雪
阅读(199)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
下一页