博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Spring4.x]基于spring4.x纯注解的Web工程搭建
阅读量:6847 次
发布时间:2019-06-26

本文共 4135 字,大约阅读时间需要 13 分钟。

hot3.png

在前文中已经说明了如何基于 Spring4.x+ 版本开发纯注解的非web项目,链接如下:

本文则主要说明,如何在Web项目中,"基于spring纯注解方式如何开发?",且看下文:

下面基于Eclipse Oxygen版本,开发一个普通的Java Web工程,演示如下:

1. 基于 maven-archetype-webapp 骨架 创建一个普通的Maven工程:

2. 在pom.xml中加入spring、logback、servlet及常用jar包的依赖:

3. 在src/main/resources下创建 application.properties、logback.xml、assembly.xml 等配置文件

4. 在Java 代码中创建 @Configuration、@ComponentScan类用于替代xml配置

代替springmvc.xml 配置的类定义

package com.morpheus.web.config;import org.springframework.context.annotation.ComponentScan;import org.springframework.context.annotation.ComponentScan.Filter;import org.springframework.context.annotation.Configuration;import org.springframework.stereotype.Controller;import org.springframework.web.servlet.config.annotation.EnableWebMvc;@Configuration@EnableWebMvc@ComponentScan(basePackages = "com.morpheus.web.controller", includeFilters = @Filter(classes = Controller.class), useDefaultFilters = false)public class WebMVCConfig {}

代替applicationContext.xml 的类定义

package com.morpheus.web.config;import org.springframework.context.annotation.ComponentScan;import org.springframework.context.annotation.ComponentScan.Filter;import org.springframework.context.annotation.Configuration;import org.springframework.stereotype.Controller;@Configuration@ComponentScan(basePackages = { "com.morpheus.web" }, excludeFilters = { @Filter(classes = Controller.class) })public class ApplicationConfig {}

5. 在Java 代码中编写 @Component、、@Controller、@RestController 等基本组件类

package com.morpheus.web.controller;import java.text.DateFormat;import java.text.SimpleDateFormat;import java.util.Calendar;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.http.HttpStatus;import org.springframework.http.MediaType;import org.springframework.http.ResponseEntity;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;import org.springframework.web.bind.annotation.RestController;import com.alibaba.fastjson.JSONObject;import com.morpheus.web.util.JSONUtil;@RestControllerpublic class TimeController {	private static final Logger LOGGER = LoggerFactory.getLogger(TimeController.class);	public TimeController() {	}	@RequestMapping(value = "/time", method = { RequestMethod.GET })	public ResponseEntity
getTime() { LOGGER.info("TimeController.getTime() begin..."); DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS"); String time = dateFormat.format(Calendar.getInstance().getTime()); JSONObject resJSON = JSONUtil.createJSON(true, HttpStatus.OK.value(), time); return ResponseEntity.ok().contentType(MediaType.APPLICATION_JSON_UTF8).body(resJSON.toJSONString()); }}

6. 在Java 代码中使用 @Autowired、@Resource 等注入依赖Bean

7. 在Java 代码中使用 @Value 等注入配置值

8. 使用 maven-war-plugin  打包项目为标准的war包,以便部署到servlet容器中

9. 在web.xml中指定相关配置

WebMVC Application
characterEncodingFilter
org.springframework.web.filter.CharacterEncodingFilter
encoding
UTF-8
forceRequestEncoding
false
forceResponseEncoding
true
characterEncodingFilter
/*
SpringServlet
org.springframework.web.servlet.DispatcherServlet
contextClass
org.springframework.web.context.support.AnnotationConfigWebApplicationContext
contextConfigLocation
com.morpheus.web.config.WebMVCConfig
1
SpringServlet
/
index.html
index.htm
index.jsp

当然,步骤9中如果是基于 servlet 3.x 规范,也可以通过类定义方式取代 web.xml 配置;

完成以上步骤开发后,使用 mvn clean package 打包部署到 tomcat 就可以正常使用服务了

 

转载于:https://my.oschina.net/morpheusWB/blog/2988967

你可能感兴趣的文章
Java NIO2:缓冲区
查看>>
AngularJS 使用$sce控制代码安全检查
查看>>
Linux中ifreq 结构体分析和使用 及其在项目中的简单应用
查看>>
牛客网-《剑指offer》-重建二叉树
查看>>
民用飞机蓄电池选型
查看>>
unity, GUI.Button texture is black
查看>>
CSharpGL(10)两个纹理叠加
查看>>
Linux 删除用户
查看>>
WebApi系列~dynamic让你的省了很多临时类
查看>>
urllib2的异常处理
查看>>
架构之路(九)Session Per Request
查看>>
Educational Codeforces Round 7 E. Ants in Leaves 贪心
查看>>
REST_FRAMEWORK加深记忆-第二次练习官方文档2
查看>>
hdu5188 加限制的01背包问题
查看>>
Volley(四)—— ImageLoader & NetworkImageView
查看>>
[UML]转:UML类图集中关系的总结
查看>>
串口驱动
查看>>
Python学习
查看>>
TNS-12535 TNS-00505的处理方法
查看>>
线段树
查看>>