spring boot
owenbb
这个作者很懒,什么都没留下…
展开
-
出现错误 Project ‘org.springframework.boot:spring-boot-starter-parent’ not found
RELEASE的版本是不稳定的,我们需要自己制定spring仓库,所以在代码中加入以下内容就可以了,加上阿里云的maven镜像 ~~~ <repositories> <repository> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/group..原创 2020-05-26 09:46:16 · 28992 阅读 · 3 评论 -
springboot项目文件结构
原创 2020-02-09 15:24:45 · 596 阅读 · 0 评论 -
spring boot学习资料整理
从SpringMVC到Spring Boot 视频资料原创 2018-06-06 16:04:03 · 1624 阅读 · 0 评论 -
spring boot入门教程--Hello Spring Boot
1、创建项目然后完成增加注解,写一个返回Hello Spring Boot的方法package com.example.girl; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import o...原创 2018-07-13 09:52:46 · 170 阅读 · 0 评论