博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring-Boot - 初步搭建
阅读量:6689 次
发布时间:2019-06-25

本文共 4634 字,大约阅读时间需要 15 分钟。

一、简介

SpringMVC是非常伟大的框架,开源,发展迅速。优秀的设计必然会划分、解耦。所以,spring有很多子项目,比如core、context、bean、mvc等。这对知根底的人来说很简单明了,然而springmvc就是为了傻瓜式的操作而发明的。对于初学springmvc的人来说,想要入手就开发需要拷贝一连串的dependency而不知道这个是干嘛,不知道是不是少了依赖。像我刚接触springmvc的时候到处百度教程而发现各有不同,于是复制了一个又一个代码却不能自己设置,根本原因是不了解各个依赖的包。

Spring-Boot 正是为了解决繁复的代码配置而产生的。Spring-Boot 也是基于java-base 开发的代码,及不用xml文件配置,所有代码都由java来完成。还可以加入Groovy的动态语言执行。

 

本文只是Springboot的初始化用法,更多详情,参阅

 

二、搭建一个基本的web-mvc 项目

2.1 Configure environment

  • java 1.8+
  • maven 3.3+
  • spring-boot 1.3.5
  • idea 15
  • Thymeleaf 3

2.2 Start

在idea中,选择new-》maven创建一个空的maven项目,比如名字springboot-test。

2.2.1pom.xml

设定java版本:

1
2
3
<
properties
>
        
<
java.version
>1.8</
java.version
>
</
properties
>

添加依赖版本管理dependencyManagement

1
2
3
4
5
6
7
8
9
10
11
12
<
dependencyManagement
>
        
<
dependencies
>
            
<
dependency
>
                
<!-- Import dependency management from Spring Boot -->
                
<
groupId
>org.springframework.boot</
groupId
>
                
<
artifactId
>spring-boot-dependencies</
artifactId
>
                
<
version
>1.3.5.RELEASE</
version
>
                
<
type
>pom</
type
>
                
<
scope
>import</
scope
>
            
</
dependency
>
        
</
dependencies
>
</
dependencyManagement
>

添加spring-web项目依赖

1
2
3
4
5
6
7
8
9
10
11
<
dependencies
>
        
<
dependency
>
            
<
groupId
>org.springframework.boot</
groupId
>
            
<
artifactId
>spring-boot-starter-web</
artifactId
>
        
</
dependency
>
    
<
dependency
>
        
<
groupId
>org.springframework.boot</
groupId
>
        
<
artifactId
>spring-boot-devtools</
artifactId
>
        
<
optional
>true</
optional
>
    
</
dependency
>
</
dependencies
>

添加build-plugin

1
2
3
4
5
6
7
8
9
10
11
12
<
build
>
        
<
plugins
>
            
<
plugin
>
                
<
groupId
>org.springframework.boot</
groupId
>
                
<
artifactId
>spring-boot-maven-plugin</
artifactId
>
                
<
configuration
>
                    
<
fork
>true</
fork
>
                
</
configuration
>
            
</
plugin
>
        
</
plugins
>
 
</
build
>

如此,一个简单的restful的webservice的项目就搭建好了。如果想要支持视图渲染,即jsp、freeMark、velocity等,添加对应的依赖即可。比如,我使用Thymeleaf模板:

1
2
3
4
<
dependency
>
            
<
groupId
>org.springframework.boot</
groupId
>
            
<
artifactId
>spring-boot-starter-thymeleaf</
artifactId
>
</
dependency
>

  

2.2.2 创建java代码

如果新建项目的名字是:springboot-test. 则创建包springboot-test/src/main/java/com/test.

com +- example     +- myproject         +- Application.java         |         +- domain         |   +- Customer.java         |   +- CustomerRepository.java         |         +- service         |   +- CustomerService.java         |         +- web             +- CustomerController.java

com.test是我们的基本包名。下面创建配置类com.test.AppConfig。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
package 
com.test;
 
import 
org.springframework.boot.SpringApplication;
import 
org.springframework.boot.autoconfigure.SpringBootApplication;
 
/**
 
* Created by miaorf on 2016/6/19.
 
*/
@SpringBootApplication
public 
class 
AppConfig {
    
public 
static 
void 
main(String[] args) {
        
SpringApplication.run(AppConfig.
class
);
    
}
}

@SpringBootApplication 标注启动配置入口,可以发现通过一个main方法启动。使用这个注解的类必须放置于最外层包中,因为默认扫描这个类以下的包。否则需要自己配置@ComponentScan。

 

这样,配置基本完成了。下面开发控制层controller:

 

创建com.test.controller.HelloController。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package 
com.test.controller;
 
import 
org.springframework.stereotype.Controller;
import 
org.springframework.ui.Model;
import 
org.springframework.web.bind.annotation.RequestMapping;
import 
org.springframework.web.bind.annotation.ResponseBody;
 
import 
java.util.HashMap;
import 
java.util.Map;
 
/**
 
* Created by miaorf on 2016/6/19.
 
*/
@Controller
public 
class 
HelloController {
 
    
@RequestMapping
(
"/index"
)
    
public 
String index(Model model){
 
        
model.addAttribute(
"name"
,
"Ryan"
);
 
        
return 
"index"
;
    
}
 
 
    
@RequestMapping
(
"/json"
)
    
@ResponseBody
    
public 
Map<String,Object> json(){
        
Map<String,Object> map = 
new 
HashMap<String,Object>();
        
map.put(
"name"
,
"Ryan"
);
        
map.put(
"age"
,
"18"
);
        
map.put(
"sex"
,
"man"
);
        
return 
map;
    
}
}

  

创建视图代码:

视图默认放在springboot-test\src\main\resources\templates**.

所以创建springboot-test\src\main\resources\templates\index.html

1
2
3
4
5
6
7
8
9
10
<!DOCTYPE HTML>
<html xmlns:th=
"http://www.thymeleaf.org"
>
<head>
    
<title>Getting Started: Serving Web Content</title>
    
<meta http-equiv=
"Content-Type" 
content=
"text/html; charset=UTF-8" 
/>
</head>
<body>
<p th:text=
"'Hello, ' + ${name} + '!'" 
/>
</body>
</html>

D:\workspace\springboot\springboot-test\src\main\webapp\hello.html

1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE HTML>
<html>
<head>
    
<title>Getting Started: Serving Web Content</title>
    
<meta http-equiv=
"Content-Type" 
content=
"text/html; charset=UTF-8" 
/>
</head>
<body>
 
hello, This is 
static 
page. not resolve by server, just the html.
</body>
</html>

  

2.2.3 run

启动方式多种,可以启动main方法,也可以通过命令行启动:

 
View Code

 

浏览器访问:localhost:8080/index

本文转自Ryan.Miao博客园博客,原文链接:http://www.cnblogs.com/woshimrf/p/springboot.html,如需转载请自行联系原作者

 

你可能感兴趣的文章
react开发环境搭建
查看>>
数据库读写分离
查看>>
社交是微信营销
查看>>
2008 R2 证书服务器应用详解
查看>>
hive 动态分区太多问题
查看>>
Windows Server 2008 RemoteApp(二)---部署激活远程桌面授权服务器
查看>>
读取日志文件开发总结
查看>>
IOS --React Native
查看>>
Linux CPU
查看>>
Linux/Centos ntp时间同步,联网情况和无网情况配置
查看>>
初级网络运维工程师比赛题目
查看>>
跨交换机实现vlan实验报告
查看>>
jquery easyui滚动条部分设置介绍
查看>>
cannot find -lxxx问题
查看>>
预防云端开源项目打包 Redis Labs再更改模块
查看>>
超惊人!去年发生的身分外泄安全事件是2017的4倍
查看>>
oracle sqlplus免安装的配置instantclient-basiclite
查看>>
Java开发GUI之选择列表
查看>>
一、分布式商城架构逻辑图
查看>>
机器人是如何完成避障的?机器人避障解决方案解读
查看>>