摘要:
public class ExtendMessageConverter extends MessageConverter { @Override public String convert(ILoggingEvent event) { return MessageFormatter.arrayFor 阅读全文
摘要:
commons-io用于读写文件FileUtils.writeStringToFile,如果自己写可以不用该依赖 1.读取规则 2.依次执行替换 <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId 阅读全文
摘要:
自动导出堆栈信息脚本 #!/bin/bashecho -e " begin `date +%Y-%m-%d\ %H:%M:%S` "#source /home/cfs/.bash_profile #如果需要重新加载环境变量 可以加上date=`date +%Y%m%d%H%M`applction_p 阅读全文
摘要:
pom.xml文件中增加 <!--单元测试--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope 阅读全文
摘要:
PETS Public English Test System全国英语等级考试 CET College English Test 大学英语 阅读全文
摘要:
WebService:跨编程语言和操作系统的远程调用技术 XML 封装数据,跨平台 SAOP 协议,特定的HTTP消息头和XML内容格式 WSDL 用于描述WebService、方法、参数、返回值 Java WebService规范: JAX-WS(JAX-RPC早期) Java API For X 阅读全文
摘要:
thymeleaf 配置了spring.mvc.view.suffix=.html,在controller中返回值不用带.html 如果没有配置,则必须加.html 阅读全文
摘要:
Setting->maven->runner VMoptions:-Dfile.encoding=GB2312 阅读全文
摘要:
double d = 10.00 String result = String.format("%.2f%%", d).replace(".00%", "%").replace(".0%", "%"); 阅读全文
摘要:
三层神经网络,训练0到9十个数字并测试: 验证码的数字和字母识别: 制作训练和测试数据: 阅读全文