복붙노트

[SPRING] Spring MVC 애플리케이션의 JSP 페이지에서 리소스에 액세스하기

SPRING

Spring MVC 애플리케이션의 JSP 페이지에서 리소스에 액세스하기

나는 봄에 상당히 새로운데, 내 스프링 맥 앱에서 내 리소스에 접근하는 데 문제가있다. 나는 Google을 시도하고 스택 오버플로를 사용하여 대답을 찾았습니다 (가능한 솔루션 1 또는 가능한 솔루션, 가능한 솔루션 3, 스프링 프레임 워크를 도왔습니다). 그러나 문제를 해결하지 못했거나 문제점을 해결하지 못했습니다. 문제 (단순히 언급 된 솔루션을 이해하지 못했기 때문일 수도 있음).

내 CSS 파일을 웹 페이지에 삽입했지만 코드를 사용하여 관리했습니다.

<%@include file="css/style.css" %>

그러나 명백한 이유로이 방법으로 URL을 사용하여 액세스 할 수는 없습니다. 또한 web.xml 파일에서 다음을 사용하여 시도했지만 효과가 없습니다.이 경우 매핑이 실제로 이해되지 않아서 문제가 될 수 있음을 인정합니다.

<mvc:annotation-driven />
<mvc:resources mapping="/images/**" location="/images/" />
<mvc:resources mapping="/css/**" location="/css/" />

나는 또한 다음 각각을 개별적으로 사용해 보았다.

<img src="<%=request.getContextPath()%>/images/logo.jpg"/>

<img src="<%=request.getContextPath()%>/src/main/resources/images/logo.jpg"/>

이것이 내 프로젝트 레이아웃입니다.

이것은 내 web.xml입니다.

<web-app id="WebApp_ID" version="2.4" 
    xmlns="http://java.sun.com/xml/ns/j2ee" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
  <display-name>MyProject Application</display-name>
  <servlet>
    <servlet-name>myServlet</servlet-name>
        <servlet-class>
                  org.springframework.web.servlet.DispatcherServlet
        </servlet-class>
        <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>myServlet</servlet-name>
        <url-pattern>/</url-pattern>
  </servlet-mapping>
</web-app>

이것은 my myServlet-servlet.xml입니다.

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:context="http://www.springframework.org/schema/context"
    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-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">
    <!-- -->
     <mvc:annotation-driven />
    <mvc:resources mapping="/images/**" location="/images/" />
    <mvc:resources mapping="/css/**" location="/css/" />
    <bean name="/index.html" 
    class="com.myproject.controller.AdminController" />
    <bean id="viewResolver"
        class="org.springframework.web.servlet.view.InternalResourceViewResolver" >
        <property name="prefix">
            <value>/WEB-INF/pages/</value>
        </property>
        <property name="suffix">
            <value>.jsp</value>
        </property>
    </bean>
</beans>

여기에 pom.xml이 들어 있기를 바랍니다.

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.myproject</groupId>
    <artifactId>myProject</artifactId>
    <packaging>war</packaging>
    <version>0.0.1-SNAPSHOT</version>
    <name>myProject Maven Webapp</name>
    <url>http://maven.apache.org</url>
    <properties>
        <springVersion>3.0.4.RELEASE</springVersion>
    </properties>
    <dependencies>

        <!-- JUnit -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>

        <!-- ORACLE JDBC driver, need install yourself -->
        <dependency>
            <groupId>com.oracle</groupId>
            <artifactId>ojdbc6</artifactId>
            <version>11.2.0</version>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
            <version>3.6.3.Final</version>
        </dependency>

        <!-- Spring framework -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>${springVersion}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
            <version>${springVersion}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>${springVersion}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>${springVersion}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-orm</artifactId>
            <version>${springVersion}</version>
        </dependency>

        <!-- for compile only, your container should have this -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.5</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>
        <!-- Commons-logging & log4j -->
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.12</version>
        </dependency>
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>1.1.1</version>
        </dependency>
    </dependencies>

    <build>
        <finalName>admin_UI</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.3</version>
                <configuration>
                    <webappDirectory>/sample/servlet/container/deploy/directory</webappDirectory>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

웹 애플리케이션 / WEB-INF / 페이지 내에서 이미지 및 CSS 폴더와 내용을 액세스 할 수 있다면 웹 페이지 (예 : URL을 통해)에 액세스 할 수있는 것과 같은 방법으로 행복하게 될 것입니다. 이상적으로는 내가 올바르게 (src \ main \ resources 또는 src \ main \ webapp \ WEB-INF \ some_resource_folder) 매핑해야하는 폴더와 맵핑을 어떻게해야하는지 이해하십시오.

더 많은 정보가 필요하다면 저는 기꺼이 제공 할 것입니다.

해결법

  1. ==============================

    1.이미지, CSS 및 자바 스크립트와 같은 모든 정적 웹 컨텐츠를 webcontent (루트 디렉토리) 디렉토리 아래의 resources 디렉토리에 두어야합니다.

    이미지, CSS 및 자바 스크립트와 같은 모든 정적 웹 컨텐츠를 webcontent (루트 디렉토리) 디렉토리 아래의 resources 디렉토리에 두어야합니다.

    그런 다음 myServlet-servlet.xml에서 디렉토리를 resources 디렉토리로 지정하십시오. 그러면 디스패처에게 정적 리소스에 대한 요청을 처리하지 않도록 지시합니다.

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
    <mvc:resources mapping="/resources/**" location="/resources/" />
    

    jsp 파일에서 JSP EL에 의해 해결 된 컨텍스트 경로에 의존하는 루트 상대 URL을 사용하여 이러한 리소스에 액세스해야합니다.

    <link href="${pageContext.servletContext.contextPath}/resources/My_CSS.css" rel="stylesheet"/>
    
  2. ==============================

    2.이것을 사용할 때 :

    이것을 사용할 때 :

    <mvc:resources mapping="/resources/**" location="/META-INF/RESOURCES/" />
    

    jsp에서이 코드를 사용하십시오.

    <link href="<c:url value="/"/>resources/My_CSS.css" rel="stylesheet"/>
    

    그 차이를보세요. CAPS RESOURCES는 파일 경로를 찾습니다. 웹 경로에서 자원 찾기

  3. ==============================

    3.자원 순서를 다음과 같이 설정하십시오.

    자원 순서를 다음과 같이 설정하십시오.

        <mvc:resources mapping="/resources/**" location="/resources/" order="-1"/>
    
  4. ==============================

    4.JSTL과 JSP EL을 혼합하는 대신 다음과 같이 spring을 설정할 수있다.

    JSTL과 JSP EL을 혼합하는 대신 다음과 같이 spring을 설정할 수있다.

    <mvc:resources mapping="/resources/**" location="/WEB-INF/pages/" />
    

    귀하의 경우에는 JSP에서 다음을 사용하십시오.

    <link href="<c:url value="/resources/My_CSS.css"/>" rel="stylesheet"/>
    
  5. ==============================

    5.당신의 JSP 파일에서,

    당신의 JSP 파일에서,

    <c:set var="context" value="${pageContext.request.contextPath}" />
    

    그리고 리소스 파일 js, css, img 등은 그것들을 포함합니다.

    <script src="${context}/resources/your.file.js" type="text/javascript"></script>
    <link href="${context}/resources/your.min.css" rel="stylesheet" type="text/css"/>
    

    또한 컨트롤러 링크와 같은 href 전에 이것을 사용해야합니다.

    <a href="${context}/yourPage">
    

    이런 식으로 서블릿 컨테이너 또는 응용 프로그램 서버 Tomcat, jetty 등에서 정의 된 컨텍스트 경로를 사용할 수 있습니다.

  6. from https://stackoverflow.com/questions/13376473/accessing-resources-in-jsp-page-of-spring-mvc-app by cc-by-sa and MIT license