質問編集履歴

1

Gradleのバージョン、実行時標準出力を追記

2019/12/21 11:00

投稿

catch_all_balls
catch_all_balls

スコア21

test CHANGED
File without changes
test CHANGED
@@ -15,6 +15,8 @@
15
15
  - Kotlin:1.3.61
16
16
 
17
17
  - Intellij Idea: Community Edition 2019_2
18
+
19
+ - Gradle(ローカル): 6.0.1
18
20
 
19
21
 
20
22
 
@@ -58,6 +60,100 @@
58
60
 
59
61
  あまりなにかできるイメージもなく、ホームディレクトリ配下の `.gradle` ディレクトリを消すくらいです...
60
62
 
63
+ Gradleからの起動は可能でした。
64
+
65
+ ```
66
+
67
+ machine:master me$ gradle :payment:bootRun
68
+
69
+
70
+
71
+ Welcome to Gradle 6.0.1!
72
+
73
+
74
+
75
+ Here are the highlights of this release:
76
+
77
+ - Substantial improvements in dependency management, including
78
+
79
+ - Publishing Gradle Module Metadata in addition to pom.xml
80
+
81
+ - Advanced control of transitive versions
82
+
83
+ - Support for optional features and dependencies
84
+
85
+ - Rules to tweak published metadata
86
+
87
+ - Support for Java 13
88
+
89
+ - Faster incremental Java and Groovy compilation
90
+
91
+ - New Zinc compiler for Scala
92
+
93
+ - VS2019 support
94
+
95
+ - Support for Gradle Enterprise plugin 3.0
96
+
97
+
98
+
99
+ For more details see https://docs.gradle.org/6.0.1/release-notes.html
100
+
101
+
102
+
103
+ Starting a Gradle Daemon, 1 stopped Daemon could not be reused, use --status for details
104
+
105
+
106
+
107
+ > Task :payments:bootRun
108
+
109
+
110
+
111
+ . ____ _ __ _ _
112
+
113
+ /\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
114
+
115
+ ( ( )\___ | '_ | '_| | '_ / _` | \ \ \ \
116
+
117
+ \/ ___)| |_)| | | | | || (_| | ) ) ) )
118
+
119
+ ' |____| .__|_| |_|_| |_\__, | / / / /
120
+
121
+ =========|_|==============|___/=/_/_/_/
122
+
123
+ :: Spring Boot :: (v2.2.2.RELEASE)
124
+
125
+
126
+
127
+ 2019-12-21 19:58:55 localhost payment-module INFO Starting BillingsApplicationKt on mac0087 with PID 4567 ()
128
+
129
+ 2019-12-21 19:58:55 localhost payment-module INFO The following profiles are active: dev
130
+
131
+ 2019-12-21 19:58:56 localhost payment-module INFO Tomcat initialized with port(s): 18080 (http)
132
+
133
+ 2019-12-21 19:58:56 localhost payment-module INFO Initializing ProtocolHandler ["http-nio-18080"]
134
+
135
+ 2019-12-21 19:58:56 localhost payment-module INFO Starting service [Tomcat]
136
+
137
+ 2019-12-21 19:58:56 localhost payment-module INFO Starting Servlet engine: [Apache Tomcat/9.0.29]
138
+
139
+ 2019-12-21 19:58:56 localhost payment-module INFO Initializing Spring embedded WebApplicationContext
140
+
141
+ 2019-12-21 19:58:56 localhost payment-module INFO Root WebApplicationContext: initialization completed in 555 ms
142
+
143
+ 2019-12-21 19:58:56 localhost payment-module INFO Initializing ExecutorService 'applicationTaskExecutor'
144
+
145
+ 2019-12-21 19:58:56 localhost payment-module INFO Starting ProtocolHandler ["http-nio-18080"]
146
+
147
+ 2019-12-21 19:58:56 localhost payment-module INFO Tomcat started on port(s): 18080 (http) with context path ''
148
+
149
+ 2019-12-21 19:58:56 localhost payment-module INFO Started BillingsApplicationKt in 1.023 seconds (JVM running for 1.345)
150
+
151
+ <===========--> 90% EXECUTING [2m 20s]
152
+
153
+ ```
154
+
155
+
156
+
61
157
  Intellij Ideaの実行ログを確認したいのですが、見たところ探せず...
62
158
 
63
159
  といった感じで、ほとんど何もできてないのが今です。
@@ -66,7 +162,7 @@
66
162
 
67
163
  # おわりに
68
164
 
69
- 正直、心当たりのある操作がほとんどないので、大変困っています。
165
+ 正直、心当たりのある操作がほとんどないので困っています。Gradleから起動できるとはいえ、個人的には不便を感じます。
70
166
 
71
167
  Spring Initializrでzip作ってインポートしてからずっとこの状態です。
72
168