javaでアプリケーションを作りコントローラーを以下のように作成しました。
portal.htmlの画面を表示したいのでlocalhost:8080/index.htmlで接続を試みると
404エラーが発生します。
#やってみたこと
port番号はTomcat started on port(s): 8080 (http) with context path ''
より8080で問題はなさそうです。
初歩的な質問で申し訳ございませんがアドバイスをいただけると幸いです
よろしくお願いいたします。
java
1package spring.app.web; 2 3import java.awt.image.BufferedImage; 4 5 6import org.springframework.beans.factory.annotation.Autowired; 7import org.springframework.http.MediaType; 8import org.springframework.http.ResponseEntity; 9import org.springframework.stereotype.Controller; 10import org.springframework.web.bind.annotation.GetMapping; 11import org.springframework.web.bind.annotation.PostMapping; 12import org.springframework.web.bind.annotation.ResponseBody; 13 14import spring.app.model.FileUploadForm; 15import spring.app.web.helper.S3DownloadHelper; 16import spring.app.web.helper.S3UploadHelper; 17 18 19 20@Controller 21public class SampleController { 22 23 @Autowired 24 S3DownloadHelper s3DownloadHelper; 25 26 @Autowired 27 S3UploadHelper s3UploadHelper; 28 29 //アップロードしている画像ファイルsample.jpgを取得し、データをレスポンス 30 @GetMapping(value = "/image", 31 headers = "Accept=image/jpeg, image/jpg, image/png, image/gif", 32 produces = {MediaType.IMAGE_JPEG_VALUE, MediaType.IMAGE_PNG_VALUE, MediaType.IMAGE_GIF_VALUE}) 33 @ResponseBody 34 public ResponseEntity<BufferedImage> getImage(){ 35 return ResponseEntity.ok().body( 36 s3DownloadHelper.getImage("sample.jpg")); 37 } 38 39 @GetMapping("/index.html") 40 public String index(){ 41 return "portal"; 42 } 43 44 45 @GetMapping("getTextFileBody") 46 @ResponseBody 47 public ResponseEntity<String> getTextFileBody() { 48 return ResponseEntity.ok().body( 49 s3DownloadHelper.getTextFileBody("test.txt")); 50 } 51 52 //画面からファイルを選択しS3バケットに保存後redirect 53 @PostMapping("upload") 54 public String upload(FileUploadForm fileUploadModel){ 55 s3UploadHelper.saveFile(fileUploadModel.getUploadFile()); 56 return "redirect:/uploadResult.html"; 57 } 58 59 @GetMapping("/uploadResult.html") 60 public String uploadResult(){ 61 return "uploadResult"; 62 } 63}
回答1件
あなたの回答
tips
プレビュー