`
文章列表
mvn install:install-file -DgroupId=com.oracle "-DartifactId=ojdbc6" "-Dversion=11.2.0.2.0" "-Dpackaging=jar" "-Dfile=E:\ojdbc6.jar"  

docker 命令

https://get.daocloud.io/toolbox/ 下载安装docker 的windows   CentOS sudo yum update sudo yum install docker   Ubuntu sudo apt-get update sudo apt-get docker.io   ------------ docker命令 (以redis为例)  镜像 1.镜像搜索 docker search redis 2.镜像下载  docker pull redis 3.镜像列表  docker images 4.镜像删除 docker r ...
事件,监听器   1.定义事件,继承ApplicationEvent DemoEvent extends ApplicationEvent 2.定义事件监听器,实现ApplicationListener DemoListener implements ApplicationListener<ApplicationListener> 实现onApplicationEvent方法 3.事件发布 使用ApplicationContext 的publishEvent发布事件  
Repository:标识接口类,方便Spring自动扫描识别 。CrudRepository:继承Repository,实现了一组CRUD相关的方法 。PagingAndSortingRepository:继承CrudRepository,实现了一组分页排序相关的方法 。JpaRepository:继承PagingAndSortingRepository,实现一组JPA规范相关的方法 。    
使用JpaRepository   实体类名DemoEntity 默认数据库对应名称为demo_entity 实体类上添加注解@Table(value="DemoEntity")不起作用  
 th:if    th:unless  当th:if条件成立时,该标签中其它th:*标签才会发挥作用,如果条件不成立,则th:*不会执行  th:unless相反不成立才会起作用  
$ spring init -dweb,data-jpa,h2,thymeleaf --build gradle  生成初始化spring boot项目   -d后面是要加载的起步依赖项,用逗号分隔 -build 构建方式,默认为maven
Global site tag (gtag.js) - Google Analytics