2016-02-29 492 views
0

當我導航到認證的URL時,所有靜態內容甚至URL裏面的href都已附加到路由的url中,因爲我得到了404在該頁面中的所有資源和HREF元素Spring Security無法加載資源:服務器響應的狀態爲404

裏面所有的URL爲前

<security:http auto-config="true" use-expressions="false"> 
      <security:intercept-url pattern="/reports/**" access="ROLE_USER"/> 
      <security:intercept-url pattern="/**" access="ROLE_ANONYMOUS"/> 

      <security:form-login login-page="/login.do" login-processing-url="/login.do" username-parameter="custom_username" 
       password-parameter="custom_password" 
       authentication-success-handler-ref="authSuccessHandler" 
       default-target-url="/" 
       always-use-default-target="true" 
       authentication-failure-url="/login.do?error=true"/> 
       <security:logout logout-url="/logout.do" logout-success-url="/login.do?logout=true"/> 
      <security:csrf disabled="true"/> 
     </security:http > 

     <security:authentication-manager> 
      <security:authentication-provider> 
       <security:user-service> 
        <security:user name="user1" password="password" authorities="ROLE_USER"/> 
        <security:user name="admin" password="password" authorities="ROLE_USER,ROLE_FOO"/> 
       </security:user-service> 
      </security:authentication-provider> 
     </security:authentication-manager> 
<security:http pattern="**/styles/**" security="none" /> 
<security:http pattern="**/js/**" security="none" /> 

,當我瀏覽到的myapp /報告/我的靜態內容已被更改爲

enter image description here

通常在HTML,它看起來像

<link href="styles/jqueryUI.css" rel="stylesheet" type="text/css" /> 
 
<link rel="stylesheet" href="styles/Home.css"> 
 
<link rel="stylesheet" href="styles/metisMenu.min.css"> 
 
<link rel="stylesheet" href="styles/sideBar.css">

東西,我在這裏錯過了連我都enebled MVC:資源

<mvc:annotation-driven/> 
<mvc:resources mapping="/WebContent/styles/**" location="css/" /> 
<mvc:resources mapping="/WebContent/js/**" location="js/" /> 
<mvc:resources mapping="/WebContent/images/**" location="images/" /> 
<mvc:resources mapping="/WebContent/fonts/**" location="fonts/" /> 
+0

你的問題不明確? –

回答

1

有你的資源映射問題和鏈接標籤的href屬性。 當你還沒有發佈的目錄結構 讓我解釋一下怎麼做的樣圖: 這裏是我的目錄結構: enter image description here

如果我想customestyle.min.css添加到我的html頁面,我需要以下設置:

<mvc:resources mapping="/contents/css/**" location="/contents/css/" /> 

<link type="text/css" rel="stylesheet" href='<c:url value="/contents/css/customestyle.min.css"/> '/> 
相關問題