基于Gradle 搭建 SpringMVC + Tomcat

以前断断续续的接触了一些后端的东西,什么SSH 啊之类的。模模糊糊也会搭建。自从转到移动端之后就很少玩起来了。现在听说都是基于Gradle的玩法了。所以我今天也来试试。

工具:

工欲善其事,必先利其器,我这里用的是IntelliJ IDEA2016 。关于工具的注册码,网上一大堆,可以搜一搜

步骤:

一. 先从创建工程开始 File -> New Project

image.png

这里勾选 Gradle 记得一定要勾选Java && Web 这样可以标识为Web工程,然后我们Next。

二.创建我们的 包名(GroupId) 工程名(Artifactid) Version (版本号)

image.png

Next
三.Gradle 的配置和 相关项勾选(建议CheckBox 全勾选)

image.png

大家注意到,我上面图片前三个 CheckBox 我都勾选了

第一个Use auto-import因为这里我遇到了一个坑. 不勾选的话,Gradle 里面的包资源不加载。所以勾选一下本身也不会导致其他问题。
第二个 Create directories for empty content roots automatically 勾选会帮你构建相应的web 目录
下面的Gradle 配置如果本地有,就用自己的,没有就默认就好了。
然后 Next

四.配置工程的目录和工程名字。

image.png

然后Finish 如下图工程目录,其实到这里,我们的SpringMvc工程搭建才刚开始,之前都是简单的配置。

image.png

重点介绍一下目录的层级作用。
. src -> main -> java 这个层级下面定义包和Java类。
. src -> main -> resources 配置文件都可以放在这个下面 例如Spring ,Mybatis的等直接用classpath:/xxxxxConfig.xml方式调用

.src -> main -> webapp 主要我们web 的配置和资源(Page,js等)都在这个目录下

但是这里发现在webapp 下面 没有 WEB-INF文件夹和 web.xml
这里我推荐先放一下,我们先来配置 Tomcat ,主要是因为我首先配置web.xml 的时候我遇到一个坑。坑的原因是我配置完以后接着配置Tomcat的时候运行出错,后来找出原因是,Tomcat 给我再web.xml/下面又创建了 web.xml很神奇。所以建议先来配置Tomcat。

步骤如下:
1.菜单栏 Run -> Edit Configurations 我们选择 + ,然后选择 Tomcat Server,如果是本地Tomcat 选择 Local

image.png

2.部署我们的项目

image.png

3.然后我们就可以看到可运行的界面了

image.png

开始搭建 Spring MVC。

前面说到我们先配置完Tomcat 再配置 web.xml 。因为一个web 项目,这必须要先存在。现在开始如下步骤
还是 File -> Project Structure -> 选择左边菜单Modules 具体见图解。

image.png

基于Gradle 配置Spring 相关依赖。

group 'com.za.patch'
version '1.0-SNAPSHOT'

apply plugin: 'java'
apply plugin: 'war'

repositories {
    mavenCentral()
}
def springVersion = "4.3.9.RELEASE"
dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.11'
    compile 'jstl:jstl:1.2'

    compile("mysql:mysql-connector-java:6.0.6")
    compile "org.springframework:spring-aop:$springVersion"
    compile "org.springframework:spring-orm:$springVersion"
    compile "org.springframework:spring-jdbc:$springVersion"
    compile "org.springframework:spring-instrument-    tomcat:$springVersion"
    compile "org.springframework:spring-instrument:$springVersion"
    compile "org.springframework:spring-framework-bom:$springVersion"
    compile "org.springframework:spring-expression:$springVersion"
    compile "org.springframework:spring-core:$springVersion"
    compile "org.springframework:spring-context-support:$springVersion"
    compile "org.springframework:spring-context:$springVersion"
    compile "org.springframework:spring-beans:$springVersion"
    compile "org.springframework:spring-aspects:$springVersion"
    compile "org.springframework:spring-test:$springVersion"
    compile "org.springframework:spring-tx:$springVersion"
    compile "org.springframework:spring-web:$springVersion"
    compile "org.springframework:spring-webmvc:$springVersion"
    compile "org.springframework:spring-webmvc-portlet:$springVersion"
}

接着我们开始创建Spring 配置文件,我们将文件创建在 src/main/resources 命名为:mvc-servlet.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:context="http://www.springframework.org/schema/context"
   xmlns:mvc="http://www.springframework.org/schema/mvc"
   xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:component-scan base-package="com.xx.xxx.controller"/>

<!-- 静态资源(js、image等)的访问 -->
<mvc:default-servlet-handler/>

<!-- 开启注解 -->
<mvc:annotation-driven/>

<!--ViewResolver 视图解析器-->
<!--用于支持Servlet、JSP视图解析-->
<bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
    <property name="prefix" value="/WEB-INF/view/"/>
    <property name="suffix" value=".jsp"/>
</bean>
</beans>

再回到web.xml 我们这里配置相关的请求控制 和监听器和 加载Spring 的配置文件

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
     version="3.1">

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
    <servlet-name>mvc</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:mvc-servlet.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>mvc</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

</web-app>

最后我们写一个 Controller 类 测试一下。

import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

/**
 * Created by stan_zy on 17/6/22.
 */
@Controller
@RequestMapping(value = "/patch" , method = RequestMethod.GET)
public class PatchController {

@RequestMapping(value = "/downLoadPatch" , method = RequestMethod.GET)
    public String downLoadPatch(ModelMap modelMap){
        modelMap.addAttribute("msg","Spring Mvc");
        return "index";
    }
}

这里说下三个地方。
*RequestMapping(value = "/patch" 标识为请求Controller的 Name。
*@RequestMapping(value = "/downLoadPatch" 标识为请求的方法
*return "index";返回一个页面

页面代码:

<%@ page contentType="text/html;charset=UTF-8" language="java"   %>
<html>
<head>
<title>${msg}</title>
</head>
<body>
<h1>${msg}</h1>
</body>
</html>

测试地址:http://localhost:8888/patch/downLoadPatch

结束。😆。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,980评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,178评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,868评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,498评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,492评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,521评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,910评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,569评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,793评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,559评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,639评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,342评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,931评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,904评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,144评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,833评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,350评论 2 342

推荐阅读更多精彩内容

  • Spring Boot 参考指南 介绍 转载自:https://www.gitbook.com/book/qbgb...
    毛宇鹏阅读 46,717评论 6 342
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,580评论 18 139
  • jHipster - 微服务搭建 CC_简书[https://www.jianshu.com/u/be0d56c4...
    quanjj阅读 794评论 0 2
  • 最近不知道是怀念时光流逝的滋味上瘾了,还是校园里一直在巡回放着哥哥张国荣的露天电影,总是情不自禁地去在歌单里...
    permanent7777阅读 367评论 0 1
  • 记得小时候被问得最多问题就是——“你的梦想是什么?”然后机械式的回答——“我长大要当个科学家!”感觉很傻逼长大后才...
    叫我齐歌阅读 297评论 0 0