特色栏目

ASP源码

PHP源码

.NET源码

JSP源码

游戏频道
专题合集
关闭菜单
首页> Java教程> java Spring框架的搭建

java Spring框架的搭建

时间:2022-05-23 09:45:06 作者:互联网

作为一个基础的开发工具,想必大家都已经下载过Spring框架了。不过光是下载只能得到一个框架,我们还需要对其中进行一些搭建,有点类似于我们在java中常做的变量设置,但又有一些小小的区别。相信说的这里大家已经想只带具体的Spring搭建方法了,下面就步骤展开讲解。

1.配置web.xml文件

http://ww***.org/2001/XMLSchema-instance"
    xmlns="http://ja***un.com/xml/ns/javaee"
    xsi:schemaLocation="http://ja***un.com/xml/ns/javaee http://ja***un.com/xml/ns/javaee/web-app_2_5.xsd"
    id="WebApp_ID" version="2.5">
    
    
        DispatcherServlet
        or***pringframework.web.servlet.DispatcherServlet
        
            contextConfigLocation
            
             cl***path:ap***cationContext.xml
        
        
         1
    
    
        DispatcherServlet
        
        /
    

2.配置ap***cationContext.xml文件

http://ww***ringframework.org/schema/beans"
       xmlns:xsi="http://ww***.org/2001/XMLSchema-instance"
       xmlns:context="http://ww***ringframework.org/schema/context"
       xmlns:mvc="http://ww***ringframework.org/schema/mvc"
        xsi:schemaLocation="http://ww***ringframework.org/schema/beans
        http://ww***ringframework.org/schema/beans/spring-beans.xsd
        http://ww***ringframework.org/schema/context http://ww***ringframework.org/schema/context/spring-context.xsd
        http://ww***ringframework.org/schema/mvc http://ww***ringframework.org/schema/mvc/spring-mvc.xsd ">
    
    
      
      

3.新建Controller文件

package com.zds;
/**  
* @author zds
* @date 2018年3月6日  
*/
import or***pringframework.web.bind.annotation.RequestMapping;
import or***pringframework.web.bind.annotation.RequestMethod;
import or***pringframework.web.bind.annotation.RequestParam;
import or***pringframework.web.bind.annotation.ResponseBody;
import or***pringframework.web.bind.annotation.RestController;
 
@RestController
@RequestMapping("/test")
public class TestController {
    @RequestMapping(value = "hello", method = Re***stMethod.GET)
    @ResponseBody
    public String helloWorld(@RequestParam("user") String userName) {
        String string = "";
        st***g.split(",");
        return "Hello " + userName + " !";
    }
}

4.把所需要的jar包放入 WEB-INF/lib文件夹中,这些jar包,和这个搭建的项目我都放到这里,如果有兴趣可以去下载。

5.到这里配置完成, eclipse中把项目添加到tomcat中,启动,浏览器中输入:

http://localhost:8080/SpringWebProject/test/hello?user=world

拓展

Spring核心容器:核心容器提供 Spring 框架的基本功能。核心容器的主要组件是 BeanFactory,它是工厂模式的实现。BeanFactory 使用控制反转 (IOC) 模式将应用程序的配置和依赖性规范与实际的应用程序代码分开。

以上就是java Spring框架的搭建,总共分为五个步骤,大家只要根据上方的操作,都不会有太大的问题。学会后赶紧把下载好的Spring框架搭建起来吧。

相关文章

相关应用

热门文章

猜你喜欢

返回顶部