第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

沒(méi)有為預(yù)期的 URL 調(diào)用 Spring Controller

沒(méi)有為預(yù)期的 URL 調(diào)用 Spring Controller

偶然的你 2022-11-30 17:00:24
我正在嘗試構(gòu)建一個(gè) SpringMVC 應(yīng)用程序并嘗試調(diào)用一個(gè)控制器。它給我一個(gè) java.io.FileNotFound 異常錯(cuò)誤。應(yīng)用程序使用 RootContext 值“springmvc”構(gòu)建并安裝在 Websphere 9 上調(diào)用 URL 以命中控制器 -http://localhost:9080/springmvc/logon并且此 URL 為“/logon”提供了一個(gè) filenotFound。但是,同時(shí)http://localhost:9080/springmvc/ 與 Controller 綁定并將輸出作為“Hello World”。我不確定為什么 /logon 沒(méi)有被識(shí)別。我嘗試將 web.xml 中的 URL Pattern 保留為 /springmvc/ 或 /springmvc/* 但它們都不起作用。我也試過(guò)在控制器中給出完整的路徑??刂破?''' ` @Controllerpublic class AdminController{@RequestMapping(value="/logon" , method = RequestMethod.GET)@ResponseBodypublic String config(){system.out.println("Inside Config Method");return "Hello World!";} ` '''網(wǎng)頁(yè).xml`<servlet>        <servlet-name>dispatcher</servlet-name>        <servlet-class>            org.springframework.web.servlet.DispatcherServlet        </servlet-class>        <init-param>            <param-name>contextConfigLocation</param-name>            <param-value>/WEB-INF/todo-servlet.xml</param-value>        </init-param>        <load-on-startup>1</load-on-startup>    </servlet><servlet-mapping>    <servlet-name>dispatcher</servlet-name>    <url-pattern>/springmvc/*</url-pattern></servlet-mapping> ` todo-servlet.xml -` <beans xmlns="http://www.springframework.org/schema/beans"    xmlns:context="http://www.springframework.org/schema/context"    xmlns:mvc="http://www.springframework.org/schema/mvc"    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd    http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">    <context:component-scan base-package="springmvc.com.controller" />    <mvc:annotation-driven /></beans>` 我希望http://localhost:9080/springmvc/logon從 AdminController 類返回響應(yīng)。請(qǐng)建議我缺少什么或者我應(yīng)該嘗試什么 url-pattern?
查看完整描述

1 回答

?
ibeautiful

TA貢獻(xiàn)1993條經(jīng)驗(yàn) 獲得超6個(gè)贊

假設(shè) AdminController 在 springmvc.com.controller 包中。我看到的問(wèn)題是 url-pattern,在這種情況下,登錄應(yīng)該在路徑上: http://localhost:9080/springmvc/springmvc/logon

第一個(gè)(springmvc)是應(yīng)用程序的上下文,所有的點(diǎn)都從它開(kāi)始。第二個(gè)在您的應(yīng)用程序中。

您需要定義 / 以獲得預(yù)期的結(jié)果。


查看完整回答
反對(duì) 回復(fù) 2022-11-30
  • 1 回答
  • 0 關(guān)注
  • 110 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)