摘要:
使用vim命令在/etc/init.d目录下新建一个xx.sh,文件名可自定义,以test.sh为例 vim /etc/init.d/start.sh 也可以用 touch start.sh 命令创建文件(Python和Java主要区别在于启动命令不一样,其他操作是一样的) #!/bin/sh ##
阅读全文
posted @ 2025-03-14 11:19
田坤坤
阅读(15)
推荐(0)
摘要:
<build> <finalName>demo</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <ver
阅读全文
posted @ 2024-10-22 10:36
田坤坤
阅读(10)
推荐(0)
摘要:
远程copy 命令我们要从远程服务器172.22.125.30上复制/usr/local/sql/yjs_menu_insert_20231228.txt文件到本地/root/opt/目录下 scp root@172.22.125.30:/usr/local/sql/yjs_menu_insert_
阅读全文
posted @ 2024-08-06 11:38
田坤坤
阅读(21)
推荐(0)
摘要:
nacos启动报错信息 ERROR Error starting Tomcat context. Exception: org.springframework.beans.factory.UnsatisfiedDependencyException. Message: Error creating
阅读全文
posted @ 2024-07-01 10:15
田坤坤
阅读(697)
推荐(0)
摘要:
Springboot瘦身(lib和程序分开打包) 1. 首先用mvn clean package正常打出jar包 这个jar包可能有几百兆大小,lib占了绝大多数将jar包解压,将 BOOT-INF 下的 lib 包拿出单独存放 2. 修改pom重新打包 <plugin> <groupId>org.
阅读全文
posted @ 2024-05-07 11:33
田坤坤
阅读(119)
推荐(0)
摘要:
-- 查询表名SELECT table_name FROM dba_tables WHERE owner = '所有者' ORDER BY table_name -- 查询表注释SELECT T.table_name,U.COMMENTS As table_comment FROM DBA_TABL
阅读全文
posted @ 2024-03-27 16:48
田坤坤
阅读(462)
推荐(0)
摘要:
1.编辑/etc/firewalld/zones/public.xml 2、加入一下内容 <!--开放指定ip的监控客户端端口--!> <rule family="ipv4"> <source address="172.31.18.81/32"/> <port port="9273" protoco
阅读全文
posted @ 2024-03-26 16:32
田坤坤
阅读(51)
推荐(0)
摘要:
cmd用管理员身份运行 mvn install:install-file -DgroupId=org.apache.activemq -DartifactId=activemq-all -Dversion=5.8.0 -Dpackaging=jar -Dfile=activemq-all-5.8.0
阅读全文
posted @ 2024-03-13 11:46
田坤坤
阅读(44)
推荐(0)
摘要:
PgSchoolCalendarWeekManagePageQry pgSchoolCalendarWeekManagePageQry = new PgSchoolCalendarWeekManagePageQry();pgSchoolCalendarWeekManagePageQry.setPgS
阅读全文
posted @ 2024-01-16 14:43
田坤坤
阅读(71)
推荐(0)
摘要:
官方文档地址:https://easyexcel.opensource.alibaba.com/docs/current/主代码:try { XsxExportTitleVO xsxExportTitleVO = new XsxExportTitleVO(); xsxExportTitleVO.se
阅读全文
posted @ 2024-01-16 11:09
田坤坤
阅读(45)
推荐(0)