随笔分类 -  SpringMVC

摘要:在springmvc配置文件中添加: <mvc:interceptors> <mvc:interceptor> <!--/**包括这个请求下的所有请求--> <mvc:mapping path="/**"/> <bean class="com.yl.config.MyInterceptor"/> < 阅读全文
posted @ 2020-09-10 22:07 Fabulo 阅读(329) 评论(0) 推荐(0)
摘要:异步无刷新请求 搭建环境后下载jQuery包,也可以用cdn库 注意controller类添加注解@RestController,禁止跳入视图 Demo01 前端页面: <%-- Created by IntelliJ IDEA. User: 92397 Date: 2020/9/10 Time: 阅读全文
posted @ 2020-09-10 17:16 Fabulo 阅读(343) 评论(0) 推荐(0)
摘要:Json是一种轻量级的数据格式 Jackson使用 导入依赖 <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.10.0</v 阅读全文
posted @ 2020-09-10 16:56 Fabulo 阅读(610) 评论(0) 推荐(0)
摘要:依赖 <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <depe 阅读全文
posted @ 2020-09-08 22:10 Fabulo 阅读(368) 评论(0) 推荐(0)