Springboot项目启动多个服务时,需要用到Run Dashboard 第一种方法:修改workspace.xml文件 1.找到项目中的workspace.xml文件:项目 》.idea 》workspace.xml 2.找到文件中 <component name="RunDashboard"> ...
分类:
其他好文 时间:
2021-06-10 18:38:54
阅读次数:
0
项目中碰到一个必须要使用动态SQL的地方, 想着在xml文件中进行一层一层的判断太麻烦了,也不好理解,要是能在Java代码中组织好SQL,进行查询操作 QueryWrapper<object> queryWrapper = new QueryWrapper<>(); queryWrapper.app ...
分类:
数据库 时间:
2021-06-10 18:38:20
阅读次数:
0
idea中的项目没有蓝色小方块 解决办法 点击maven里面的加号,加上该项目的pom.xml,刷新即可。 ...
分类:
其他好文 时间:
2021-06-10 18:38:05
阅读次数:
0
web.xml的配置 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-inst ...
分类:
编程语言 时间:
2021-06-10 18:32:56
阅读次数:
0
settings,xml 阿里云镜像: <mirror> <id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/ ...
分类:
其他好文 时间:
2021-06-10 18:06:24
阅读次数:
0
1.在pom.xml中引入amazonS3的依赖。 <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-s3</artifactId> <version>1.11.792</version> </depende ...
分类:
编程语言 时间:
2021-06-10 17:34:05
阅读次数:
0
1、首先在AndroidManifest.xml文件中添加internet申请 <uses-permission android:name="android.permission.INTERNET"/> 2、然后在build.gradle文件中添加相应的依赖(添加后点击下载,后台就会自动下载相应的j ...
分类:
Web程序 时间:
2021-06-08 23:37:55
阅读次数:
0
springboot整合mybatis框架 mybaits类似与hibernate框架,对数据库进行增删改查操作 mybatis半自动化的ORM框架 mybatis的优势:自己写sql更加灵活 过程:1.在navicat 新建test1表并添加数据 2.在pom.xml添加相关的依赖 包含父依赖,软 ...
分类:
其他好文 时间:
2021-06-08 23:36:30
阅读次数:
0
创建maven web工程 在pom.xml中导入依赖: <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> ...
分类:
其他好文 时间:
2021-06-08 23:31:21
阅读次数:
0
4. spring相关API 4.1 ApplicationContext的继承体系 applicationContext:接口类型,代表应用上下文,可以通过其实例获得 Spring 容器中的 Bean 对象 4.2 ApplicationContext的实现类 1)ClassPathXmlAppl ...
分类:
编程语言 时间:
2021-06-08 23:14:29
阅读次数:
0