初学SpringBoot之三

原教程如是http://blog.csdn.net/lxhjh/article/details/51753852

记录问题:

1.maven工程导入后,pom.xml文件报错:“failed to read artifact descriptor for org.springframework.boot:.......”。

解决办法:关闭eclipse;删除repository目录下所有文件;重启eclipse;在项目上右键maven,选择update project。

2.虚拟机崩溃。

解决办法:将该虚拟机目录下的.lck文件备份删除,或重命名。

3.初学了一些redis内容。但是SpringBoot项目还没有连上redis。只是安装了redis,并在cmd中启动服务、赋值、取值。

学习链接为http://www.runoob.com/redis/redis-install.html.。

另外使用redis过程中也使用了cmd的部分命令,有趣。另找时间可以仔细研究。

时间: 2024-10-26 05:22:35

初学SpringBoot之三的相关文章

初学SpringBoot之一

学习的时候参考的这篇教程,http://blog.csdn.net/lxhjh/article/details/51751847. --------------------------------------------------------------------------------------------------------------------------------------------- 主要发现了几个问题: 1.SpringBoot可以直接以run as java ap

初学SpringBoot之二

原文教程链接在此http://blog.csdn.net/lxhjh/article/details/51752419. 使用了org.slf4j.Logger和org.slf4j.LoggerFactory 贴三句代码: protected static Logger logger=LoggerFactory.getLogger(HelloController.class); logger.debug("访问hello"); logger.debug("访问helloNam

初学springboot, 如何快速使用maven搭建springboot项目呢

搭建Springboot 推荐使用maven, 但也可以不使用maven,用正常的java工程. 在MyEclipse上新建一个maven工程 点击Next,选择create a simple project 点击Next,输入下图所示 点击finish,稍等一下会,项目就构建完成.目录结构如下所示: 上图中的pom.xml提示错误,点开pom.xml,切换至:Dependencies视图,点击红色错误,弹出提示框,点击+号.完成后pom.xml将不会报错. pom.xml增加继承父包 <!--

SpringBoot静态资源访问+拦截器+Thymeleaf模板引擎实现简单登陆

在此记录一下这十几天的学习情况,卡在模板引擎这里已经是四天了. 对Springboot的配置有一个比较深刻的认识,在此和大家分享一下初学者入门Spring Boot的注意事项,如果是初学SpringBoot,或者有意向学习Springboot的朋友,这篇文章可以简单的来帮助你,处理一些不必要的麻烦. 开发环境: IDea JDK1.8 SpringBoot2+ Maven3.5 1.配置Maven 首先我们打开IdeA我们从新建一个项目开始.SpringBoot是基于Maven来管理Jar包的.

使用springboot跳转不了页面

记录初学springboot踩的一点坑 首先我登录页面直接通过浏览器请求直接访问的,项目结构如图所示 登录页面 1 <form action="index" id="frm"> 2 <input type="text" name="dname"> 3 <input type="text" name="loc"> 4 <input type=&qu

springboot使用之三:springboot使用logback日志

springboot 默认使用的日志就是logback,所以使用logback不需要添加日志相关依赖了,执行 添加logback.xml配置文件,springboot这个聪明的框架便能识处理你的配置. 做法:将logback.xml放在resources下(classpath)下即可.配置参考如下: <?xml version="1.0" encoding="UTF-8"?> <configuration> <statusListene

springboot初学---使用redis

1.jar包依赖 <!-- redis --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> 2.application.properties配置文件 # REDIS (RedisProperties) # Redis

springboot初学---rabbitmq的使用

1.jar包依赖 <!-- 配置rabbitMQ --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-amqp</artifactId> <version>1.5.10.RELEASE</version> </dependency> 2.application.pro

Spring-Boot - 初步搭建

official document:http://projects.spring.io/spring-boot/ 项目代码: https://github.com/chenxing12/springboot-test 一.简介 SpringMVC是非常伟大的框架,开源,发展迅速.优秀的设计必然会划分.解耦.所以,spring有很多子项目,比如core.context.bean.mvc等.这对知根底的人来说很简单明了,然而springmvc就是为了傻瓜式的操作而发明的.对于初学springmvc的