Spring Boot
- Google App Engine Java Standard 環境で手っ取り早くSpring Boot アプリケーションを開発する
- 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
YAGI Hiroto (piroto@a-net.email.ne.jp)
twitter http://twitter.com/pppiroto
Copyright© 矢木 浩人 All Rights Reserved.