91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot怎么實現返回視圖

發布時間:2022-01-28 09:05:31 來源:億速云 閱讀:541 作者:iii 欄目:開發技術

本篇內容主要講解“springboot怎么實現返回視圖”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“springboot怎么實現返回視圖”吧!

springboot返回視圖而不是string

package com.example.demo.controller;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@EnableAutoConfiguration
public class HelloController {
    @RequestMapping("/hello")
    public String hello() {
        System.out.println("進入controller");
        return "hello";
    }
}

注意釋@Controller而不是@RestContreller

@RestController返回的是json(JSON 是 JS 對象的字符串表示法,它使用文本表示一個 JS 對象的信息,本質是一個字符串。)如果用了@RestController則不要用@Responsebody

還有一種就是通過ModelAndView

import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
@Controller
@EnableAutoConfiguration
public class HelloController {
    @RequestMapping("/hello")
    @ResponseBody
    public ModelAndView hello(){
        System.out.println("hello!");
        ModelAndView mode = new ModelAndView();
        mode.setViewName("hello");
        return mode;
    }
}

一般用于攜帶參數且返回視圖,如果要帶參數的話,加上mode.addObject()函數

另外需要注意一點,html文件中所有標簽都必須要有結束符,idea有時候生成meta標簽時會沒有結束符,所以要加上

最終輸入http://localhost:8080/hello就可以了 

springboot返回視圖方式

Spring boot返回視圖的方式

1.使用ModelAndView

在controller中

    @RequestMapping("toTest")
    public ModelAndView toTest(){
        ModelAndView mv = new ModelAndView();
        //視圖名
        mv.setViewName("login");
        //想傳的數據
        mv.addObject("o1","數據1");
        return mv;
    }

2.使用webMVC配置

創建配置類

package com.ch.exercise.config.webMvc;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
/**
 * MVC配置
 * @author CH
 * @date 2021-08-19 11:45
 */
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
    @Override
    public void addViewControllers(ViewControllerRegistry registry) {
        registry
        //接收的請求
        .addViewController("/toLogin")
        //跳轉的頁面名
        .setViewName("login");
    }
}

補充一下

快速上手

1.在pom.xml添加依賴

		<!--web-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <!--thymeleaf-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>

2.創建頁面login.html

springboot怎么實現返回視圖

3.配置thymeleaf

在application.yml中添加上

spring:
  thymeleaf:
  	#頁面存放位置
    prefix: classpath:/templates/
    #是否緩存 這里是否
    cache: false
    suffix: .html
    mode: LEGACYHTML5
    template-resolver-order: 0

再進行視圖配置就可以訪問到了

到此,相信大家對“springboot怎么實現返回視圖”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

汨罗市| 濮阳市| 启东市| 揭阳市| 曲靖市| 新泰市| 扎鲁特旗| 新邵县| 汪清县| 正镶白旗| SHOW| 都匀市| 同心县| 基隆市| 台江县| 武冈市| 边坝县| 尼勒克县| 娄底市| 石林| 雷波县| 邹城市| 盘山县| 海兴县| 葵青区| 资阳市| 宁明县| 炉霍县| 安义县| 买车| 泸定县| 襄城县| 抚宁县| 出国| 通道| 深水埗区| 桃园县| 双桥区| 上犹县| 连南| 合肥市|