溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

SpringBoot中怎么返回頁面

發(fā)布時(shí)間:2021-07-29 16:45:54 來源:億速云 閱讀:179 作者:Leah 欄目:開發(fā)技術(shù)

本篇文章為大家展示了SpringBoot中怎么返回頁面,內(nèi)容簡明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

SpringBoot中使用Controller和頁面的結(jié)合能夠很好地實(shí)現(xiàn)用戶的功能及頁面數(shù)據(jù)的傳遞。但是在返回頁面的時(shí)候竟然會(huì)出現(xiàn)404或者500的錯(cuò)誤,我總結(jié)了一下如何實(shí)現(xiàn)頁面的返回以及這里面所包含的坑。

SpringBoot中對(duì)Thymeleaf的集成已經(jīng)基本完善,但在特殊情況下,并不需要或者不能使用Thymeleaf,所以分成兩種情況對(duì)頁面的返回進(jìn)行闡述。

首先說一下這兩種情況下都會(huì)發(fā)生的錯(cuò)誤,也是新手們經(jīng)常會(huì)出現(xiàn)的錯(cuò)誤。

直接上代碼:

@RestController
public class TestController {
    @RequestMapping("/")
    public String index() {
        return "index";
    }
}

這個(gè)代碼的初衷是返回index.html頁面,但是執(zhí)行的結(jié)果是在頁面中輸出index。

原因分析:@RestController注解相當(dāng)于@ResponseBody和@Controller合在一起的作用。在使用@RestController注解Controller時(shí),Controller中的方法無法返回jsp頁面,或者h(yuǎn)tml,配置的視圖解析器 InternalResourceViewResolver不起作用,返回的內(nèi)容就是Return 里的內(nèi)容。

包括在Mapping注解使用的同時(shí)使用@ResponseBody時(shí)也會(huì)出現(xiàn)同樣的問題。

解決辦法:①去除@ResponseBody或?qū)⒑蠷est的注解換成對(duì)應(yīng)的原始注解;

   ②不通過String返回,通過ModelAndView對(duì)象返回,上述例子可將return語句換成下面的句子:

return new ModelAndView("index");

在使用ModelAndView對(duì)象返回的時(shí)候,不需要考慮有沒有@ResponseBody類似的注解。

還有一個(gè)需要注意的點(diǎn):@RequestMapping中的路徑一定不要和返回的頁面名稱完全相同,這樣會(huì)報(bào)500的錯(cuò)誤?。。?!

如下面這樣是不行的:

@Controller
public class TestController {
    @RequestMapping("/index")
    public String idx() {
        return "index";
    }
}

1、在不使用模板引擎的情況下:

在不使用模板引擎的情況下,訪問頁面的方法有兩種:

1)將所需要訪問的頁面放在resources/static/文件夾下,這樣就可以直接訪問這個(gè)頁面。如:

SpringBoot中怎么返回頁面

在未配置任何東西的情況下可以直接訪問:

SpringBoot中怎么返回頁面

而同樣在resources,但是在templates文件夾下的login.html卻無法訪問:

SpringBoot中怎么返回頁面

2)使用redirect實(shí)現(xiàn)頁面的跳轉(zhuǎn)

示例代碼(在頁面路徑和上面一致的情況下):

@Controller
public class TestController {
    @RequestMapping("/map1")
    public String index() {
        return "redirect:index.html";
    }
    @RequestMapping("/map2")
    public String map2() {
        return "redirect:login.html";
    }
}

執(zhí)行結(jié)果:

SpringBoot中怎么返回頁面

這說明這種方法也需要將html文件放在static目錄下才能實(shí)現(xiàn)頁面的跳轉(zhuǎn)。

當(dāng)然還是有終極解決方案來解決這個(gè)存放路徑問題的,那就是使用springmvc的配置:

spring:
  mvc:
    view:
      suffix: .html
    static-path-pattern: /**
  resources:
    static-locations: classpath:/templates/,classpath:/static/

這樣配置后,map1和map2都可以訪問到頁面了。

2、使用Thymeleaf模板引擎:

先將所需要的依賴添加至pom.xml

<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-thymeleaf -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
    <version>2.1.6.RELEASE</version>
</dependency>

同樣的頁面路徑下將controller代碼修改成下面的代碼:

@Controller
public class TestController {
    @RequestMapping("/map1")
    public String index() {
        return "index";
    }
    /** 下面的代碼可以實(shí)現(xiàn)和上面代碼一樣的功能 */
    /*public ModelAndView index() {
        return new ModelAndView("index");
    }*/
    @RequestMapping("map2")
    public String map2() {
        return "login";
    }
}

執(zhí)行結(jié)果:

SpringBoot中怎么返回頁面

這又說明一個(gè)問題,所需要的頁面必須放在templates文件夾下。當(dāng)然也可以修改,更改配置文件:

spring:
  thymeleaf:
    prefix: classpath:/static/
    suffix: .html
    cache: false #關(guān)閉緩存

更改prefix對(duì)應(yīng)的值可以改變Thymeleaf所訪問的目錄。但好像只能有一個(gè)目錄。

上述內(nèi)容就是SpringBoot中怎么返回頁面,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI