1,037 バイト追加
、 2020年2月15日 (土) 07:35
==Spring Boot==
[Google App Engine(Java)]
{{amazon|4798053473}}
*https://docs.spring.io/spring-boot/docs/2.1.4.RELEASE/reference/htmlsingle/
======
*[http://typea.info/blg/glob/2019/04/google-app-engine-java-standard-spring-boot.html Google App Engine Java Standard 環境で手っ取り早くSpring Boot アプリケーションを開発する]
*[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==
===src/main/resources配下のファイルを読み込む===
*ClassPathResource で相対パスを指定
InputStream in = new ClassPathResource("secret_files/rakuten_apis/rakuten_api.properties").getInputStream();
===ファイルアップロードの最大サイズを変更する===
*http://typea.info/blg/glob/2019/08/spring-boot.html
*application.propertiesに以下を追記
spring.servlet.multipart.max-file-size: 20Mb
spring.servlet.multipart.max-request-size: 100Mb