1. 程式人生 > >spring boot 整合mybatis(好用!!!!)

spring boot 整合mybatis(好用!!!!)

com true pla 12px 保密 center 性別 request context

springboot整合mybatis

1.pom依賴

    <!-- 引入freeMarker的依賴包. -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-freemarker</artifactId>
  </dependency>    

2.配置application.properties

 
spring.freemarker.template
-loader-path=classpath:/templates/ spring.freemarker.cache=false spring.freemarker.charset=UTF-8 spring.freemarker.check-template-location=true spring.freemarker.content-type=text/html spring.freemarker.expose-request-attributes=true spring.freemarker.expose-session-attributes=true spring.freemarker.request
-context-attribute=request spring.freemarker.suffix=.ftl

3.代碼實現

1) 控制層代碼

@RequestMapping("/freemarker")
    public String freemarker(Map<String, Object> map) {
        map.put("name", "我是誰");
        map.put("sex", 1);
  } // sex:性別,1:男;0:女;

2)在main\resources\templates 目錄下 新建 freemarker.ftl 文件,,內容如下:

技術分享圖片

    文件內容:

    

<!DOCTYPE html>  
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"  
      xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">  
    <head>  
        <title>Hello World!</title>  
    </head>  
    <body>
       <center>
       <p>  
           welcome ${name} to freemarker!  
       </p>        
        
       <p>性別:  
           <#if sex==0><#elseif sex==1><#else>  
                  保密     
           </#if>  
        </p>
   </body>
</html>

3)在瀏覽器中訪問 http:127.0.0.1:8080/freemarker,即可跳轉到 到頁面,如下:

  技術分享圖片

聲明註意事項(必看不然可能會錯):

  controller層寫註解的時候不能使用@restController @responseBody,不然會報錯。

springboot mybatis整合

spring boot 整合mybatis(好用!!!!)