1. 程式人生 > >新手玩springboot,一玩就遇到了坑!

新手玩springboot,一玩就遇到了坑!

微服務架構現在都使用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的區別是什麼。後面還有更多坑等著咱。有什麼不足希望大佬們留言指出,謝謝!