| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「Spring Boot」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
 
1行目: 1行目:
==Spring Boot==
+
==[[Spring Boot]]==
 
[[Google App Engine(Java)]] |  
 
[[Google App Engine(Java)]] |  
  
5行目: 5行目:
  
  
*https://docs.spring.io/spring-boot/docs/2.1.4.RELEASE/reference/htmlsingle/
+
*https://docs.spring.io/spring-boot/docs/2.1.4.[[R]]ELEASE/reference/htmlsingle/
  
 
======
 
======
11行目: 11行目:
 
*[http://typea.info/blg/glob/2019/04/google-app-engine-java-standard-spring-boot-thymeleaf.html Google App Engine Java Standard環境に Spring Bootのテンプレートエンジン Thymeleafを適用]
 
*[http://typea.info/blg/glob/2019/04/google-app-engine-java-standard-spring-boot-thymeleaf.html Google App Engine Java Standard環境に Spring Bootのテンプレートエンジン Thymeleafを適用]
  
==Tips==
+
==[[Tips]]==
 
===src/main/resources配下のファイルを読み込む===
 
===src/main/resources配下のファイルを読み込む===
*ClassPathResource で相対パスを指定
+
*ClassPath[[R]]esource で相対パスを指定
  InputStream in = new ClassPathResource("secret_files/rakuten_apis/rakuten_api.properties").getInputStream();
+
  InputStream in = new ClassPath[[R]]esource("secret_files/rakuten_apis/rakuten_api.properties").getInputStream();
 
===ファイルアップロードの最大サイズを変更する===
 
===ファイルアップロードの最大サイズを変更する===
 
*http://typea.info/blg/glob/2019/08/spring-boot.html
 
*http://typea.info/blg/glob/2019/08/spring-boot.html

2020年2月16日 (日) 04:32時点における最新版

Spring Boot

Google App Engine(Java) |


==

Tips

src/main/resources配下のファイルを読み込む

  • ClassPathResource で相対パスを指定
InputStream in = new ClassPathResource("secret_files/rakuten_apis/rakuten_api.properties").getInputStream();

ファイルアップロードの最大サイズを変更する

spring.servlet.multipart.max-file-size: 20Mb
spring.servlet.multipart.max-request-size: 100Mb