質問編集履歴

7

記述ミスを訂正(同じ場所)

2019/11/12 04:45

投稿

tohmey
tohmey

スコア10

test CHANGED
File without changes
test CHANGED
@@ -230,7 +230,7 @@
230
230
 
231
231
  ```java
232
232
 
233
- List<Object>() objLine;
233
+ List<Object> objLine;
234
234
 
235
235
 
236
236
 

6

記述ミスを訂正

2019/11/12 04:45

投稿

tohmey
tohmey

スコア10

test CHANGED
File without changes
test CHANGED
@@ -230,7 +230,7 @@
230
230
 
231
231
  ```java
232
232
 
233
- List<Object>(fields.length) objLine;
233
+ List<Object>() objLine;
234
234
 
235
235
 
236
236
 

5

@Autowiredが抜けていたので追加

2019/11/12 04:42

投稿

tohmey
tohmey

スコア10

test CHANGED
File without changes
test CHANGED
@@ -160,6 +160,12 @@
160
160
 
161
161
  public class CsvUtil {
162
162
 
163
+ @Autowired
164
+
165
+ DownloadHelper dlHelper;
166
+
167
+
168
+
163
169
  public ResponseEntity<byte[]> dlCsv(List<?> entityList, List<String> cols) {
164
170
 
165
171
  try {

4

参考文献を追記しました。

2019/11/12 04:38

投稿

tohmey
tohmey

スコア10

test CHANGED
File without changes
test CHANGED
@@ -330,11 +330,7 @@
330
330
 
331
331
  で、作成したファイルをダウンロードさせる方法でもいいです。
332
332
 
333
- こちらも、いまひとつ使い方がわかりません。
333
+ こちらも、いまひとつ使い方がわかりません。自分メモ:[参考文献](https://qiita.com/shibafu/items/80d09784f7c8f0b8eec7)
334
-
335
-
336
-
337
-
338
334
 
339
335
 
340
336
 

3

不要な文字列変換部分を除去

2019/11/11 08:44

投稿

tohmey
tohmey

スコア10

test CHANGED
File without changes
test CHANGED
@@ -202,7 +202,7 @@
202
202
 
203
203
  String[] spl = entity.getClass().getName().split(Pattern.quote("."));
204
204
 
205
- return StrUtil.camelToSnake(spl[spl.length-1]).concat(ext);
205
+ return spl[spl.length-1].concat(ext);
206
206
 
207
207
  }
208
208
 

2

語句修正

2019/11/11 08:26

投稿

tohmey
tohmey

スコア10

test CHANGED
File without changes
test CHANGED
@@ -108,7 +108,7 @@
108
108
 
109
109
  ```
110
110
 
111
- 【Utility】リクエに乗せる処理(ほぼ参考文献のまま)
111
+ 【Utility】ポンスに乗せる処理(ほぼ参考文献のまま)
112
112
 
113
113
 
114
114
 

1

リンクの書き方を変えました。

2019/11/11 08:13

投稿

tohmey
tohmey

スコア10

test CHANGED
File without changes
test CHANGED
@@ -308,7 +308,7 @@
308
308
 
309
309
 
310
310
 
311
- [最初に参考にしたサイト](https://qiita.com/t-iguchi/items/75c879fc9a3423c511cb)
311
+ 最初に参考にしたサイト:[Springboot でCSVをダウンロードしたい](https://qiita.com/t-iguchi/items/75c879fc9a3423c511cb)
312
312
 
313
313
  その他、CsvMapperとCsvSchema、jacksonの使い方で検索しまくったが、欲しい答えが得られず。
314
314