SpringMVC RESTFul实战案例访问首页
作者:把苹果咬哭的测试笔记 时间:2022-03-12 00:21:01
SpringMVC RESTFul访问首页实现
一、新建 index.html
在 webapp\WEB-INF\templates 下新建首页 index.html。
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8" >
<title>Title</title>
</head>
<body>
<h1>首页</h1>
<a th:href="@{/employee}" rel="external nofollow" >查看员工信息</a>
</body>
</html>
二、配置视图控制器
在 springMVC.xml 配置文件里,配置首页的 view-controller。另外还要开启注解驱动。
<?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.pingguo.rest"></context:component-scan>
<!-- 配置Thymeleaf视图解析器 -->
<bean id="viewResolver" class="org.thymeleaf.spring5.view.ThymeleafViewResolver">
<property name="order" value="1"/>
<property name="characterEncoding" value="UTF-8"/>
<property name="templateEngine">
<bean class="org.thymeleaf.spring5.SpringTemplateEngine">
<property name="templateResolver">
<bean class="org.thymeleaf.spring5.templateresolver.SpringResourceTemplateResolver">
<!-- 视图前缀 -->
<property name="prefix" value="/WEB-INF/templates/"/>
<!-- 视图后缀 -->
<property name="suffix" value=".html"/>
<property name="templateMode" value="HTML5"/>
<property name="characterEncoding" value="UTF-8" />
</bean>
</property>
</bean>
</property>
</bean>
<!--
path:设置处理的请求地址
view-name:设置请求地址所对应的视图名称
-->
<mvc:view-controller path="/" view-name="index"></mvc:view-controller>
<!--开启 mvc 的注解驱动-->
<mvc:annotation-driven />
</beans>
三、Idea 部署配置
点击 配置。
继续按照顺序点击配置。
选择要部署的 war 包,点击确定。
最后为了方便访问,修改下上下文(不改也可以)。
点击部署,成功后自动打开首页。
感谢《尚硅谷》的学习资源。
来源:https://blog.csdn.net/wessonlan/article/details/124812966
标签:SpringMVC,RESTFul,访问首页
0
投稿
猜你喜欢
带你用C语言实现strtok和字符串分割函数
2021-11-07 10:09:59
深入探讨JAVA中的异常与错误处理
2023-06-11 00:30:24
Android 圆角边框的实现方式汇总
2023-03-20 04:27:46
C#十五子游戏编写代码
2023-06-13 07:33:22
从Hello World开始理解GraphQL背后处理及执行过程
2023-06-04 00:25:53
Java @Value("${xxx}")取properties时中文乱码的解决
2023-08-14 06:25:50
c# 判断是否为空然后赋值的4种实现方法
2021-06-06 22:01:12
redisson 实现分布式锁的源码解析
2022-06-05 05:38:47
Android ListView弹性效果的实现方法
2023-08-07 19:06:40
Android自定义View实现垂直时间轴布局
2022-12-12 15:21:16
java身份证验证代码实现
2023-12-09 16:10:50
Android开发之WebView组件的使用解析
2022-07-22 21:52:15
解决java启动时报线程占用报错:Exception in thread “Thread-14“ java.net.BindException: Address already in use: bind
2021-07-05 04:26:23
C# httpwebrequest访问HTTPS错误处理方法
2021-10-31 02:40:49
C#把数组中的某个元素取出来放到第一个位置的实现方法
2021-11-26 00:17:36
Java中的泛型详解
2023-11-02 17:51:56
聊聊Spring Cloud Gateway过滤器精确控制异常返回问题
2022-06-23 01:04:14
ActiveMQ在C#中的应用示例分析
2021-09-18 19:12:41
Android外部存储无法访问问题解决方法
2021-12-17 06:52:12
Java源码解析HashMap的keySet()方法
2023-11-11 06:33:05