Spring MVC配置静态资源和资源包教程

2021-07-20 06:06

阅读:401

YPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">

标签:web app   project   func   title   red   input   one   war   load   

1- 介绍

这篇教程文章是基于:
  • Spring 4 MVC

2- 创建一个项目

  • File/New/Other..
技术分享图片
技术分享图片
技术分享图片
输入:
  • Group ID: com.yiibai
  • Artifact ID: SpringMVCResource
  • Package: com.yiibai.springmvcresource
 

技术分享图片
项目被创建以后如下:

 
技术分享图片
不要担心有错误消息在项目被创建时。原因是,我们还没有声明 Servlet 库。

注意:

Eclipse 4.4(Luna)在创建 Maven 项目结构时可能是有错误的。需要修复。
技术分享图片
 

3- 配置Maven

  • pom.xml
4.0.0com.yiibai
  SpringMVCResource
  war0.0.1-SNAPSHOTSpringMVCResource Maven Webapphttp://maven.apache.orgjunit
            junit
            3.8.1testjavax.servlet
            javax.servlet-api
            3.1.0providedjavax.servlet
            jstl
            1.2javax.servlet.jsp
            jsp-api
            2.2providedorg.springframework
            spring-core
            4.1.4.RELEASEorg.springframework
            spring-web
            4.1.4.RELEASEorg.springframework
            spring-webmvc
            4.1.4.RELEASESpringMVCResourceorg.apache.tomcat.maven
                tomcat7-maven-plugin
                2.2

4- 配置Spring

 

配置 web.xml

SpringContextListener 将读取配置文件参数 contextConfigLocation:
技术分享图片
  • WEB-INF/web.xml
Archetype Created Web Applicationspring-mvc
           org.springframework.web.servlet.DispatcherServlet
       1spring-mvc/contextConfigLocation
          /WEB-INF/root-context.xml
        org.springframework.web.context.ContextLoaderListener
配置Spring MVC:
  • WEB-INF/spring-mvc-servlet.xml
classpath:ApplicationRB.properties/WEB-INF/pages/.jspappProperties
  • WEB-INF/root-context.xml
配置静态资源:

 
   
   
   
资源映射 :
技术分享图片
 

配置Properties文件:

5- Java类

技术分享图片

 
  • MyController.java
package com.yiibai.springmvcresource;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class MyController {

    @RequestMapping(value = "/staticResourceTest")
    public String staticResource(Model model) {
        return "staticResourceTest";
    }

    @RequestMapping(value = "/resourceBundleTest")
    public String resourceBundle(Model model) {
        return "resourceBundleTest";
    }
}

6- 资源包,静态资源和视图

Resource Bundle (Properties file):
技术分享图片

 
  • ApplicationRB.properties
text.loginPrompt=Enter user name and password
text.userName=User Name
text.password=Password
静态资源
技术分享图片
  • scripts/common.js
function sayHello()  {    
   alert("Hello from JavaScript");
}
  • /WEB-INF/resource/css/commons.css
.button {
   font-size: 20px;
   background: #ccc;
}
 
.red-text {
   color: red;
   font-size: 30px;
}
 
.green-text {
   color: green;
   font-size: 20px;
}

视图(两个JSP文件)
技术分享图片

  • staticResourceTest.jsp
Spring MVC Resource example
Red text

Green text

  • resourceBundleTest.jsp
 


Spring MVC Resource Bundle example

${appProperties[‘text.loginPrompt‘]}

${appProperties[‘text.userName‘]}
${appProperties[‘text.password‘]}

7- 运行应用程序

首先,运行应用程序之前,您需要构建整个项目。
右键单击项目并选择:
技术分享图片
技术分享图片
运行配置:
技术分享图片
技术分享图片
输入:
  • Name: Run SpringMVCResource
  • Base directory: ${workspace_loc:/SpringMVCResource} 可选择“Browse Workspace..." 来选对应项目。
  • Goals: tomcat7:run
技术分享图片
点击 Run
技术分享图片
静态资源测试:
  • http://localhost:8080/SpringMVCResource/scripts/common.js
    技术分享图片
  • http://localhost:8080/SpringMVCResource/styles/common.css
    技术分享图片
  • http://localhost:8080/SpringMVCResource/staticResourceTest
    技术分享图片
属性文件测试:
    • http://localhost:8080/SpringMVCResource/resourceBundleTest
      技术分享图片

 

Spring MVC配置静态资源和资源包教程

标签:web app   project   func   title   red   input   one   war   load   

原文地址:https://www.cnblogs.com/borter/p/9519831.html


评论


亲,登录后才可以留言!