質問編集履歴

2

2019/08/27 21:09

投稿

yamanoharu0129
yamanoharu0129

スコア47

test CHANGED
File without changes
test CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  ただ、DBeaverの公式サイトや検索では見つけられなかったので、一旦Servletで接続を試みています。
12
12
 
13
- 以下のようにコードで直に書くのではなく、簡単な方法があれば、それも教えていただければと思います。(021b3f621b1eee2f467f4a630255f5f7.png)
13
+ 以下のようにコードで直に書くのではなく、簡単な方法があれば、それも教えていただければと思います。
14
14
 
15
15
 
16
16
 

1

cache.properties,web.xmlの内容を加筆しました

2019/08/27 21:09

投稿

yamanoharu0129
yamanoharu0129

スコア47

test CHANGED
File without changes
test CHANGED
@@ -49,3 +49,51 @@
49
49
  }
50
50
 
51
51
  ```
52
+
53
+
54
+
55
+ 以下加筆
56
+
57
+ cache.properties
58
+
59
+ ```
60
+
61
+ #Mon Aug 26 11:16:50 JST 2019
62
+
63
+ gradle.version=5.4
64
+
65
+ ```
66
+
67
+ 他に二か所のディレクトリに、gc.propertiesファイルがありましたが空でした。
68
+
69
+
70
+
71
+ web.xml
72
+
73
+ ```
74
+
75
+ <?xml version="1.0" encoding="UTF-8"?>
76
+
77
+ <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1">
78
+
79
+ <display-name>connecttest</display-name>
80
+
81
+ <welcome-file-list>
82
+
83
+ <welcome-file>index.html</welcome-file>
84
+
85
+ <welcome-file>index.htm</welcome-file>
86
+
87
+ <welcome-file>index.jsp</welcome-file>
88
+
89
+ <welcome-file>default.html</welcome-file>
90
+
91
+ <welcome-file>default.htm</welcome-file>
92
+
93
+ <welcome-file>default.jsp</welcome-file>
94
+
95
+ </welcome-file-list>
96
+
97
+ </web-app>
98
+
99
+ ```