码迷,mamicode.com
首页 > 编程语言 > 详细

Intellij+spring boot+spring MVC创建helloworld示例完整步骤

时间:2018-07-04 15:09:26      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:port   next   class   jsp   initial   窗口   pen   微信   xmlns   

1. 创建spring boot项目

技术分享图片

选择spring initializr,然后选择default

技术分享图片

点击next,填写项目信息

技术分享图片

点击“next”,选择web->web

技术分享图片

点击“next”,填写项目信息

技术分享图片

点击“finish”,在新窗口打开后项目结构如下

技术分享图片

2. 添加rest controller

在com.spboot.mvcdemo右键添加new class

技术分享图片

创建HelloController,代码如下

package com.spboot.mvcdemo;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
@RequestMapping("/")
public String Hello(){
return "hello world!";
}
}

技术分享图片

然后直接运行,运行后访问http://localhost:8080

技术分享图片

到此我们可以通过rest进行api的开发了。

3. 添加mvc支持

在pom中添加springmvc和themeleaf的依赖

<dependency>
???? <groupId>org.springframework</groupId>
???? <artifactId>spring-webmvc</artifactId>
</dependency>
<dependency>
???? <groupId>org.springframework.boot</groupId>
???? <artifactId>spring-boot-starter-thymeleaf</artifactId>

</dependency>

技术分享图片

创建mvcController类

技术分享图片

代码如下:

package com.spboot.mvcdemo;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class HelloMVCController {

???? @RequestMapping("/mvc")
???? public String Hello(){
???????? return "hello";
???? }

}

技术分享图片

在resources/templates下创建hello.html文件

技术分享图片

代码如下:

技术分享图片

记住:html页面中一定要加入<html xmlns:th="http://www.thymeleaf.org"> 这句话,否则themeleaf引擎无法识别。

配置完成后,重新运行,访问http://localhost:8080/mvc,效果如下:

技术分享图片

这种模式,对于新创建的项目,或是以前就是用html做为前端的view层的可以采用。但是对于一些老的项目,用的jsp做为view,要如何改造呢,继续看下面。

4. 添加对jsp的支持

在pom中添加对jsp的依赖,同时要把themeleaf的依赖注释掉

<!--用于编译jsp-->
<dependency>
???? <groupId>org.apache.tomcat.embed</groupId>
???? <artifactId>tomcat-embed-jasper</artifactId>
???? <!--<scope>provided</scope>-->
</dependency>

<dependency>
???? <groupId>org.springframework.boot</groupId>
???? <artifactId>spring-boot-starter-test</artifactId>
???? <scope>test</scope>
</dependency>
<dependency>
???? <groupId>org.springframework.boot</groupId>
???? <artifactId>spring-boot</artifactId>
???? <version>2.0.1.RELEASE</version>
</dependency>

技术分享图片

添加webapp的目录,结构如下:

技术分享图片

在jsp目录下添加view页面。

在application.properties中添加如下的配置

spring.mvc.view.prefix = /WEB-INF/jsp/
spring.mvc.view.suffix = .jsp

技术分享图片

在controller中添加一个mapping

@RequestMapping("/welcome")
public String welcome(){
???? return "welcome";
}

技术分享图片

在启动类添加ServletComponentScan的标注,同时要继承SpringBootServletInitializer
?

技术分享图片

重新运行应用后访问http://localhost:8080/welcome

技术分享图片

5. 发布到github

创建一个仓库名字为springbootMVCDemo,创建完成后,如图:

技术分享图片

在本地找一个目录,clone一下先。

https://github.com/lileihappy123/springbootMVCDemo.git

技术分享图片

完成后在本地会有一个springbootMVCDemo的目录

技术分享图片

把代码copy到目录下

因为我这里有图形界面所以比较简单,直接右键git commit->master,弹出提交界面,全选,输入comments, 点击”commit & push”

技术分享图片

等待上传完成

技术分享图片

然后到github上查看即可查看到上传的代码

技术分享图片

关注微信公众号”挨踢学霸”,更多IT姿势在等你

技术分享图片

Intellij+spring boot+spring MVC创建helloworld示例完整步骤

标签:port   next   class   jsp   initial   窗口   pen   微信   xmlns   

原文地址:http://blog.51cto.com/12482328/2136063

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!