This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 锦旗一 | |
## 抬头 | |
- 赠:锦欣百花锦园 健康管理部 李婷婷 | |
## 内容 | |
- 关怀备至,温情常驻心田暖 | |
- 管理有方,协力共兴康养家 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Application dependencies | |
require: | |
- com.greenlaw110 -> app-base 2.1.3 | |
- com.greenlaw110 -> play-excel 1.2.3 | |
- com.greenlaw110 -> config 1.2.2 | |
- com.greenlaw110 -> betterlogs 1.2j | |
- com.greenlaw110 -> aaa 2.1 | |
- com.greenlaw110 -> play-rythm 1.0.1-b3 | |
- com.greenlaw110 -> morphia 1.5.0a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<configuration> | |
<statusListener class="ch.qos.logback.core.status.NopStatusListener" /> | |
<!-- Send debug messages to System.out --> | |
<appender name="OUTPUT" class="ch.qos.logback.core.ConsoleAppender"> | |
<withJansi>true</withJansi> | |
<encoder> | |
<pattern>%date %highlight(%-5level) %cyan(%logger{5}@[%-4.30thread]) - %msg%n</pattern> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@luog-X510UQR:~# sudo apt install --install-recommends winehq-stable | |
Reading package lists... Done | |
Building dependency tree | |
Reading state information... Done | |
Some packages could not be installed. This may mean that you have | |
requested an impossible situation or if you are using the unstable | |
distribution that some required packages have not yet been created | |
or been moved out of Incoming. | |
The following information may help to resolve the situation: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void main(String[] args) throws Exception { | |
long ts = $.ms(); | |
final OkHttpClient http = new OkHttpClient.Builder().build(); | |
final AtomicInteger backlog = new AtomicInteger(100000); | |
final AtomicInteger exceptions = new AtomicInteger(0); | |
ExecutorService exec = Executors.newFixedThreadPool(100); | |
for (int i = 0; i < 150; ++i) { | |
exec.submit(new Runnable() { | |
@Override | |
public void run() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import act.util.Global; | |
import org.joda.time.DateTimeZone; | |
import org.joda.time.LocalDateTime; | |
import org.joda.time.format.DateTimeFormat; | |
import org.joda.time.format.DateTimeFormatter; | |
import org.osgl.$; | |
import org.osgl.aaa.NoAuthentication; | |
import org.osgl.http.H; | |
import org.osgl.mvc.annotation.After; | |
import org.osgl.util.S; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ANTLR Tool version 4.7.2 used for code generation does not match the current runtime version 4.5.3ANTLR Runtime version 4.7.2 us23:06:50.978 [XNIO-1 task-4] ERROR a.x.NetworkHandler - Fatal Error encountered handling request: | |
java.lang.ExceptionInInitializerError: null | |
at org.beetl.core.engine.DefaultTemplateEngine.createProgram(DefaultTemplateEngine.java:36) | |
at org.beetl.sql.core.engine.SQLTemplateEngine.createProgram(SQLTemplateEngine.java:17) | |
at org.beetl.core.GroupTemplate.loadTemplate(GroupTemplate.java:573) | |
at org.beetl.core.GroupTemplate.getTemplateByLoader(GroupTemplate.java:526) | |
at org.beetl.core.GroupTemplate.getTemplate(GroupTemplate.java:503) | |
at org.beetl.sql.core.SQLScript.run(SQLScript.java:76) | |
at org.beetl.sql.core.SQLScript.run(SQLScript.java:66) | |
at org.beetl.sql.core.SQLScript.select(SQLScript.java:326) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class FastJsonIssue { | |
public static class Record { | |
@JSONField(format = "yyyy-MMM-dd") | |
public Date date1 = new Date(); | |
@JSONField(format = "yyyyMMdd") | |
public Date date2 = date1; | |
@JSONField(format = "yyyy_MM_dd hh:mm") | |
public DateTime dateTime = DateTime.now(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Routes | |
# This file defines all application routes (Higher priority routes first) | |
# ~~~~ | |
#Runtime | |
GET /yemian/{yemianId}/ CMYingyong.jiazaiYemian | |
* /tuiguang/{tuiguangId}/ CMYingyong.jiazaiTuiguang | |
GET /jilu/{jiluId} CMYingyong.jilu | |
GET /toupiao CMYingyong.toupiao | |
GET /tandcdialog CMYingyong.tAndCDialog |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.mycom</groupId> | |
<artifactId>myapp</artifactId> | |
<version>1.0.0-SNAPSHOT</version> | |
<packaging>jar</packaging> | |
<name>My Act Application</name> | |
NewerOlder