私は頭がおかしくなり、何が問題なのか理解できません。
私は次の構造を持っています:
SpringMVC
+WebContent
-web-inf
-web.xml
-springMVC-servlet.xml
-index.jsp
-security
-login.jsp
web.xml
<display-name>springMVC</display-name>
<servlet>
<servlet-name>springMVC</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springMVC</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>springMVC</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>springMVC</servlet-name>
<url-pattern>/index.html</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
springMVC-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xsi:schemaLocation=" http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans">
<context:annotation-config/>
<context:component-scan base-package="com.Vanilla.springMVC"/>
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver" >
<property name="prefix">
<value>/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
</beans>
私のコントローラー:
package com.Vanilla.springMVC;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.portlet.ModelAndView;
@Controller
public class DefaultController {
@RequestMapping(value="/index.html", method=RequestMethod.GET)
public ModelAndView index(){
ModelAndView mv = new ModelAndView("index");
return mv;
}
@RequestMapping(value="/login.html", method=RequestMethod.GET)
public ModelAndView loginPage(){
ModelAndView mv = new ModelAndView("/security/login");
return mv;
}
}
/index.htmlに移動しても問題ありません
http:// localhost:8080/SpringMVC/index.html は完璧に機能します。
ただし、 http:// localhost:8080/SpringMVC/login.html に移動すると、404エラーが発生します。
HTTP Status 404 - /SpringMVC/login.jsp
type Status report
message /SpringMVC/login.jsp
description The requested resource (/SpringMVC/login.jsp) is not available.
Login.jspをindex.jspと同じレベルに移動したくありませんが、なぜこの問題があるのですか?
HTTP 404は、リソースが見つからないことを意味します。
HTTPステータス404-/SpringMVC/login.jsp
HTTPリクエスト/SpringMVC/login.jsp
を送信したようですが、コントローラーメソッドは.html
にバインドされているため、HTTPリクエストを/SpringMVC/login.html
に変更する必要があります
名前(ログイン)のため、Spring Securityの構成が正しくない可能性があります。
これで404の問題が解決したので、ここに追加します。私の問題はurl-mapping
の値web.xml
。 Spring WebMVCバージョンを使用するorg.springframework:spring-webmvc:4.1.6.RELEASE
私は以下を使用していました(動作しませんでした):
<url-pattern>/rest</url-pattern>
私は次の値を使用しているはずです(これは機能します):
<url-pattern>/rest/*</url-pattern>
または
<url-pattern>/</url-pattern>
リファレンス: http://docs.spring.io/spring/docs/current/spring-framework-reference/html/mvc.html
すべてのビューに対してWEB-INF "jsps"の下にフォルダーを作成し、 "jsps"の下にケースのために "security"フォルダーを作成します。注意:JSPファイルをWEB-INFに移動すると、これらのファイルへの直接アクセスを防止できます。アプリケーションのセキュリティのために必要です。 JSPが顧客に関する個人情報を提供し、アクセスがコントローラーによって許可/チェックされる必要がある状況を考えてください。 JSPがWEB-INFの外にある場合は、JSPに直接リクエストすることでアクセスできます。
次のようにビューリゾルバを構成します。
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/> <property name="prefix" value="/WEB-INF/jsps"/> <property name="suffix" value=".jsp"/> </bean>
次に、ログインJSPを「WEB-INF/jsps/security」に配置し、loginPageから「security/login」を返します。
これで、ビューリゾルバーは「WEB-INF/jsps」でビューを検索します。メソッドが「security/login」を返すため、ビューリゾルバーは、「security」と呼ばれるjspsの下のディレクトリと、「login.jsp」と呼ばれるこの下のJSPファイル(サフィックス= jsp)を予期します
ModelAndView mv = new ModelAndView("/security/login");
に問題があると思います。ルートディレクトリに「セキュリティ」フォルダがあり、login.jspファイルが含まれていることを確認してください。または、WebContent内のセキュリティフォルダを移動してみてください
DispatcherServletのcontextConfigLocation initパラメーターを指定します
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/springMVC-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
EclipseおよびMacOS XシステムでSpring MVCを使用していて、コントローラーが正しいjsp名を返すときに404エラーが発生しました。問題のあるjspファイルにx(execution))がファイルシステム上にないことが後でわかりました。次に、 `chmod + x some.jsp 'を実行すると、問題は解決します。
他の誰かが同じ問題に直面した場合に備えて、このansをここに追加します。私のアプリは以前は問題なく動作していましたが、Springバージョンをアップグレードし、その過程でSpringセキュリティバージョンもアップグレードしました。ログインhtmlページにアクセスしようとすると、この問題に直面していました。 spring-securityのバージョンが3から4に変更されたため、必要な構成変更をすべて行いました このリンク を参照しましたが、非常に役に立ちました。
私のweb-servlet.xmlファイルの以下の構成が原因で、この問題に直面していました
<mvc:resources mapping="/app/*.html" location="/app/*.html" cache-period="0"/>
<mvc:resources mapping="/app/**/*.html" location="/app/**/*.html" cache-period="0"/>
両方の場所の値を"/app/"
に変更した後に機能しました。 Springの新しいバージョンは文字列全体に一致するか、要求された場所が上記で構成された場所の値で始まるかどうかをチェックするようです。
私はorg.springframework.web.servlet.resource.PathResourceResolverで以下のコードを見つけました:
if (locationPath.equals(resourcePath)) {
return true;
}
locationPath = (locationPath.endsWith("/") || locationPath.isEmpty() ? locationPath : locationPath + "/");
if (!resourcePath.startsWith(locationPath)) {
return false;
}
2番目のif条件が私の場合falseと評価されていたため、404 HTTP応答
別のヒントとして、このようなエラーが発生した場合は、最高レベルのSpringFrameworkロギングを有効にしてみてください。そこからエラーの理由を知ることができます。
この回答は上記の質問に対して古くなっている可能性がありますが、春から始まったばかりの人には役立ちます。また、404 WEB-INF/welcome.jspページが見つからないというエラーも発生しました。
ここでの問題はModelAndViewインポートに関するものです
交換する
import org.springframework.web.servlet.ModelAndView;
と
import org.springframework.web.portlet.ModelAndView;