springboot+html+mybatis 引入本地jquery

引入依赖

  
     org.springframework.boot
      spring-boot-starter-freemarker
    

application.yml

 freemarker:
    suffix: .html

情况一:

    项目结构

    springboot+html+mybatis 引入本地jquery_第1张图片

    如果将mybatis的mapper放在resources目录下,pom中则不需要配置标签

    页面引入jquery

    5d7b968f9d8dcea1c74fc85df12fb57111c.jpg

    不需要写static,因为springboot默认加载static文件夹

情况二:

项目结构

springboot+html+mybatis 引入本地jquery_第2张图片

    如果想将mybatis的mapper文件放在dao包中

pom中需要如下配置(必须配置**/*.js否则不会加载js文件)



  
    src/main/java
    
      **/*.xml
    
  
  
  
    src/main/resources
    
      **/*.properties
      **/*.yml
      
      **/*.html
      
      **/*.js
      
    
    false
  

 

  页面引入jquery

    5d7b968f9d8dcea1c74fc85df12fb57111c.jpg

转载于:https://my.oschina.net/u/3535099/blog/3069387

你可能感兴趣的:(springboot+html+mybatis 引入本地jquery)