微服务架构现在都使用spring Boot了,所以也就跟风学习spring Boot,毕竟流行嘛,不学都不行。
好了,对于初学者,SpringBoot刚用还是会遇到很多坑!接下来就说说遇到的第一个坑,没用过嘛,一开始就直接百度搜索spring Boot 整合Mybatis教程玩玩。
按照教程一一的添加所需要的东西,自动生成一个些Mybatis文件。就简单的做了一个查询功能。
先上一个结构图:
使用了IDEA作为开发工具:大致的结构图就是这样
resources目录的组织结构、
上面的是大致结构图,如下截一些主要的配置图
application就比较简单,@MapperScan中配置我们需要扫描的Mapper位置。
@SpringBootApplication
@MapperScan("com.qvs.mapper")
public class QvsApplication {
public static void main(String[] args) {
SpringApplication.run(QvsApplication.class, args);
}
}
springboot会自动加载spring.datasource.*相关配置,数据源就会自动注入到sqlSessionFactory中,sqlSessionFactory会自动注入到Mapper中
mybatis.config-locations=classpath*:mybatis/mybatis-config.xml
mybatis.mapper-locations=classpath*:com/qvs/maps/*.xml
mybatis.type-aliases-package=com.qvs.model
##mysql数据配置
spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/q3p_vip_school?useSSL=false&useUnicode=true&characterEncoding=utf-8
spring.datasource.username=root
spring.datasource.password=ccd123456
UserController里面就只做了一个简单的查询用户信息功能。坑点就在这里,由于还不属性springBoot有哪些特性,就照抄网上资料进行使用,网上没有使用@RestController,而是只用使用@Controller来注解,因为之前使用spring来注解的时候也习惯 了使用这种,所以都没有太注意这个东西,当我要启动项目想要访问http://localhost:8080/user/showUser?id=10010 的时候,发现怎么请求都一直报的There was an unexpected error (type=Not Found, status=404).
No message available 错误,很纳闷,网上找了很多,有的说忘记引入了thymeleaf依赖,引入后还是没用。
找了很久才发现,RestController 和 Controller是有很大区别的:
@Controller 返回到指定页面,则需要用 @Controller配合视图解析器InternalResourceViewResolver才行
@ResponseBody 如果需要返回JSON,XML或自定义mediaType内容到页面显示,需要在对应的方法上加上@ResponseBody注解。
@RestController:Spring4之后新加入的注解,原来返回json需要@ResponseBody和@Controller配合。现在@RestController是@ResponseBody和@Controller的组合注解。
@RestController
@RequestMapping("/user")
public class UserController {
@Autowired
private UserDataMapper userDataMapper;
/**
* 实现简单的根据用户id查询用户数据
* @param request
* @return
*/
@RequestMapping("/showUser")
public UserData toIndex(HttpServletRequest request) {
int userId = Integer.parseInt(request.getParameter("id"));
UserData user = userDataMapper.selectByPrimaryKey(userId);
return user;
}
}
pom.xml文件里面的配置有一点需要注意的是,就是最下面的那一段resources块里面设置了一个路径,当mapper.xml文件要放到src/main/java/下面的目录时,就需要resources块进行指定文件目录加载,否则target目录将加载不到mapper.xml文件。
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!--集成druid,使用连接池。-->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.1.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerVersion>1.8</compilerVersion>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<!-- 热部署 -->
<configuration>
<fork>true</fork>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
</build>
这个问题最终还是解决了,虽然找了很久,但是弄明白了RestController 和 Controller的区别是什么。后面还有更多坑等着咱。
最后跟大家分享一个好东西,阿里云产品通用红包,价值1888元,限时领取哦,有需要购买云产品的小伙伴可以点击以下链接进行领取。
https://promotion.aliyun.com/ntms/yunparter/invite.html?userCode=u577kwtm
有什么不足希望大佬们留言指出,谢谢!