|
@@ -55,11 +55,9 @@ public class ViewController extends Controller {
|
|
|
*/
|
|
|
public void getExam() {
|
|
|
try {
|
|
|
- String IV = "0000000000000000";
|
|
|
- String aesEncryptStr = this.getPara("data");
|
|
|
DataService dService = ServiceFactory.getService(DataService.class);
|
|
|
- String aesEncryptStr3 = dService.getExamList(this.getPara("data"));
|
|
|
- this.renderText(aesEncryptStr);
|
|
|
+ String aesEncryptStr3 = dService.getExamList("Q1R3PhZX3/h9Mue5L5kmugNrt6aBECHKdcdq/q5xBsJVSC5mnenePI5LLZ4GigdpH2RUv/NHX1Kjhnzt1eQpYBgGS5t9Ki63Vc5E/R3T6TnrXfPyeIv1K+HgaCai3sc0");
|
|
|
+ this.renderText(aesEncryptStr3);
|
|
|
} catch (Exception e) {
|
|
|
// TODO: handle exception
|
|
|
this.renderText(e.toString());
|
|
@@ -84,8 +82,8 @@ public class ViewController extends Controller {
|
|
|
|
|
|
public void testConn3() {
|
|
|
DataService dService = ServiceFactory.getService(DataService.class);
|
|
|
- dService.updateCloudKey();
|
|
|
- renderNull();
|
|
|
+// dService.updateCloudKey();
|
|
|
+ renderText(dService.getCloudKey());
|
|
|
}
|
|
|
|
|
|
public static DruidPlugin createConnectedDruidPlugin() {
|