摘要: SpringMVC org.example 1.0-SNAPSHOT 4.0.0 <artifactId>SpringMVC-04-Controller</artifactId> <properties> <maven.compiler.source>8</maven.compiler.source 阅读全文
posted @ 2021-09-11 22:30 withLevi 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 使用说明 如果在类上使用@RestController 可以省略类上的@Controller和方法上的ResponseBody 类上@RestController等同于 类上的@Controller 和ResponseBody package top.withlevi.controller; imp 阅读全文
posted @ 2021-09-11 11:32 withLevi 阅读(452) 评论(0) 推荐(0) 编辑
摘要: <!--自动扫描指定的包, 下面所有的注解类交给IOC容器管理 --> <context:component-scan base-package="top.withlevi.controller"/> <!--视图解析器--> <bean class="org.springframework.web 阅读全文
posted @ 2021-09-11 10:59 withLevi 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 今天在使用SpringMVC和Jackson过程中 编译不通过,找了半天发现是Spring5系列(Spring framework 我用的是5.3.8版本) 而jackson我用的是2.6.7版本,编译会报错访问目标地址提示500, 在maven中把jackson-databind的版本改为2.9. 阅读全文
posted @ 2021-09-11 10:51 withLevi 阅读(440) 评论(0) 推荐(0) 编辑