using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi ...
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Data.SqlClient; 6 using System. ...
1.自定义异常 public class CreateFailedException extends RuntimeException{ public CreateFailedException(String errMsg) { super(errMsg); } /** * Construct a ...
分类:
其他好文 时间:
2021-06-02 19:45:45
阅读次数:
0
Tomcat优化 内存,并发,缓存,安全,网络,系统等 1. JAVA虚拟机内存申请优化 在文件tomcat_home/bin/catalina.sh的前面,增加如下设置(需要考虑Java提供的垃圾回收机制) JAVA_OPTS='-Xms1024m -Xmx2048m -XX: PermSize= ...
分类:
其他好文 时间:
2021-06-02 16:47:24
阅读次数:
0
小猫的配置,方便项目测试,大家可以参考下 -noverify -javaagent:D:\tomcat_jrebel\jrebel.jar-Drebel.aspectj_plugin=true-Drebel.spring_plugin=true -Drebel.log4j-plugin=true-n ...
分类:
其他好文 时间:
2021-05-24 13:47:57
阅读次数:
0
1.CD到目标文件的目录,例如文件夹 LoadMethodTest cd ../LoadMethodTest 2.执行以下代码,将 main.m 文件编译为 main.cpp 文件 clang -rewrite-objc -isysroot /Applications/Xcode.app/Conte ...
分类:
编程语言 时间:
2021-05-24 13:38:07
阅读次数:
0
在Ubuntu平台安装QT时,遇到Could not load the Qt platform plugin "xcb" ...
分类:
系统相关 时间:
2021-04-26 13:57:35
阅读次数:
0
引入的./baseSite.js let baseSite = "" if(process.env.NODE_ENV 'development'){// 开发环境 //request.js文件baseSite = 'ulr路径'}else{// 生产环境baseSite = 'url路径'} exp ...
分类:
移动开发 时间:
2021-04-19 15:49:52
阅读次数:
0
C#中AppDomain.CurrentDomain.BaseDirectory及各种路径获取方法 https://www.360kb.com/kb/2_87.html // 获取程序的基目录。 System.AppDomain.CurrentDomain.BaseDirectory // 获取模块 ...
分类:
移动开发 时间:
2021-03-31 12:22:14
阅读次数:
0
Winform基础详解三——关于program.cs program是整个Winform程序的主入口点。 [STAThread] 表示一种当前应用程序的特性 表示当前COM线程模型是单线程单元 如果没有它,winform应用程序是无法工作的 using System; using System.Co ...