Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/361.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 我的spring安全代码没有使用静态资源,比如css、js和images文件夹_Java_Css_Spring_Spring Mvc_Spring Security - Fatal编程技术网

Java 我的spring安全代码没有使用静态资源,比如css、js和images文件夹

Java 我的spring安全代码没有使用静态资源,比如css、js和images文件夹,java,css,spring,spring-mvc,spring-security,Java,Css,Spring,Spring Mvc,Spring Security,我正在尝试访问我在spring security中使用的jsp中的静态资源…但访问这些静态资源并不需要你的..有价值的建议..我是spring security的新手 我的dispacher servlet是 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLS

我正在尝试访问我在spring security中使用的jsp中的静态资源…但访问这些静态资源并不需要你的..有价值的建议..我是spring security的新手

我的dispacher servlet是

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:mvc="http://www.springframework.org/schema/mvc"
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/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/mvc
     http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
<context:property-placeholder location="classpath:resources/database.properties" />
<context:component-scan base-package="com.nufame" />

<tx:annotation-driven transaction-manager="hibernateTransactionManager" />

<bean id="jspViewResolver"
    class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="viewClass"
        value="org.springframework.web.servlet.view.JstlView" />
    <property name="prefix" value="WEB-INF/views/" />
    <property name="suffix" value=".jsp" />
</bean>


<bean id="dataSource"
    class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="driverClassName" value="${database.driver}" />
    <property name="url" value="${database.url}" />
    <property name="username" value="${database.user}" />
    <property name="password" value="${database.password}" />
</bean>

<bean id="sessionFactory"
    class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
    <property name="dataSource" ref="dataSource" />
    <property name="hibernateProperties">
        <props>
            <prop key="hibernate.dialect">${hibernate.dialect}</prop>
            <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
            <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}    
</prop>
        </props>
    </property>
</bean>
我的security.xml是

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   xmlns:security="http://www.springframework.org/schema/security"
xmlns:p="http://www.springframework.org/schema/p" xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
                       http://www.springframework.org/schema/beans/spring-beans.xsd
                       http://www.springframework.org/schema/security
                       http://www.springframework.org/schema/security/spring-security-3.1.xsd
                       http://www.springframework.org/schema/mvc
     http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
     http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd">
 <!-- Non secure URLs -->
<security:http auto-config="true">
    <security:intercept-url pattern="/index*" access="ROLE_USER" />
    <security:form-login login-page="/login" default-target-url="/index" 
    authentication-failure-url="/fail2login" />
    <security:logout invalidate-session="true"
        logout-success-url="/logout" />


    <security:access-denied-handler
        error-page="/403" />
</security:http>
<security:http pattern="/css/**" security="none" />


<security:authentication-manager>
    <security:authentication-provider>

        <!-- <security:user-service> <security:user name="dineshonjava" password="sweety" 
            authorities="ROLE_USER" /> </security:user-service> -->
        <security:jdbc-user-service
            data-source-ref="dataSource"
            users-by-username-query="select username, password, active from users where username=?"
            authorities-by-username-query="select us.username, ur.authority from users us, user_roles ur 
          where us.user_id = ur.user_id and us.username =?  " />
    </security:authentication-provider>
</security:authentication-manager>

</beans>
我的web.xml是

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"     xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
 <servlet>
<servlet-name>sdnext</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>sdnext</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<listener>
<listener-class>
              org.springframework.web.context.ContextLoaderListener
    </listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
        /WEB-INF/sdnext-*.xml,
    </param-value>
</context-param>
<welcome-file-list>
<welcome-file>index</welcome-file>
</welcome-file-list>

 <filter>
 <filter-name>springSecurityFilterChain</filter-name>
 <filter-class>
              org.springframework.web.filter.DelegatingFilterProxy
            </filter-class>
 </filter>
 <filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
 </filter-mapping>
<welcome-file-list>
  <welcome-file>login.jsp</welcome-file>
</welcome-file-list>
</web-app>
请帮助我,我是春季保安的新手


提前感谢….

在dispatcher servlet中,使用添加资源,例如: 另外,不要忘记在顶部添加以下行: xmlns:mvc=http://www.springframework.org/schema/mvc ...

参考此

可能对您有帮助:我尝试了此项..但未获得..静态资源的访问..抱歉谢谢..但当我使用此项并获取资源时..未找到..此错误..嵌套异常为org.xml.sax.SAXParseException:cvc复杂类型.2.4.c:匹配的通配符严格,但找不到元素“mvc:resources”的声明。是否包含依赖项?我希望您使用Maven作为“spring webmvc”?否..我没有为此使用DependencyAven..:P..是否无法访问静态资源。我不这样认为..您有一些想法,请回复…我希望,您应该下载“SpringWebMVC.jar”包,然后将其添加到项目的构建路径中。