
springboot
Hero_孙
JAVA是最好的语言!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
IDEA的使用(1 springboot从无到hello world)
随着IDEA的出现,原来越多的JAVA程序员在使用IDEA,为了跟上时代的步伐,从鄙视链中向到上一级,学习IDEA的使用新建springboot项目然后等待下载每次下载都很慢,很大概率会下载失败,不知道有没有什么好的建议,已经失败好多次了浏览器是可以访问https://start.spring.io/ 的,失败若干次之后,终于成功了项目 结构启动方...原创 2018-07-12 10:14:32 · 741 阅读 · 0 评论 -
IDEA的使用(2 springboot 配置文件)
使用IDEA 创建springboot 并实现helloworld 详情-> https://blog.youkuaiyun.com/aa15237104245/article/details/81002962springboot 的配置文件 之 application.properties文件路径为:可以配置的内容有:自定义内容com.shj.name=shjcom.shj.age=25可以使用...原创 2018-07-12 11:29:14 · 1608 阅读 · 0 评论 -
IDEA使用(3 springboot 整合SSM框架)
pom.xml<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.ap原创 2018-07-12 14:30:03 · 1090 阅读 · 1 评论 -
IDEA使用(4 springboot 前端thymeleaf 尝试)
springboot 官方不推荐使用jsp作为页面显示,而是推荐使用thymeleaf 首先导入依赖包 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifa...原创 2018-07-12 18:21:03 · 1205 阅读 · 0 评论 -
(eclipse) springboot-1 hello world
hello world创建一个helloworld @Controller public class HelloWorld { @RequestMapping("/hello") public String hello() { return "helloworld"; ...原创 2019-04-25 12:03:49 · 278 阅读 · 0 评论 -
使用idea, 搭建Gradle+springboot+thymeleaf 项目
使用IDEA 2019gradle的相关配置可以参考创建完成之后,目录结构如下查看 build.gradleplugins { id 'org.springframework.boot' version '2.1.5.RELEASE' id 'java' id 'war'}apply plugin: '...原创 2019-05-30 18:52:48 · 1228 阅读 · 1 评论