SSH框架
晚春
这个作者很懒,什么都没留下…
展开
-
eclipse搭建maven SpringMVC项目
今天使用Eclipse+Maven建立了一个Javaweb工程,并在eclipse中配置了Web容器Jboss eap 6.2。新建jsp页面,添加一个简单的Java类。可是,JSP页面顶端出现“红色”的报错信息:The superclass "javax.servlet.http.HttpServlet" was notfound on the Java Build Path。原转载 2015-12-17 17:34:34 · 245 阅读 · 0 评论 -
web.xml的作用
每个javaEE工程中都有web.xml文件,那么它的作用是什么呢?它是每个web.xml工程都必须的吗? 一个web中可以没有web.xml文件,也就是说,web.xml文件并不是web工程必须的。 web.xml文件是用来初始化配置信息:比如Welcome页面、servlet、servlet-mapping、filter、listener、启动加载级别等。当你的we转载 2015-12-23 13:44:37 · 335 阅读 · 0 评论 -
web.xml实例
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" >如果使用工具编辑部署描述符,display-name元素包含的就是XML编辑器显示的名称 -->wz-mgrcontext-param元素含有一对参数名和参数值,用作应用的s原创 2015-12-24 14:12:34 · 1076 阅读 · 0 评论 -
SpringBoot的常用系统变量
# ===================================================================# COMMON SPRING BOOT PROPERTIES## This sample file is provided as a guideline. Do NOT copy it in its# entirety to your own appl转载 2016-07-26 17:34:53 · 2057 阅读 · 0 评论 -
SpringBoot依赖积累
表 1. Spring Boot 推荐的基础 POM 文件名称说明spring-boot-starter核心 POM,包含自动配置支持、日志库和对 YAML 配置文件的支持。spring-boot-starter-amqp通过 spring-rabbit 支持 AMQP。spring-boot-st原创 2016-07-15 16:50:53 · 1960 阅读 · 0 评论 -
SpringBoot配置积累
1、为定时任务分配线程池@Configuration@EnableSchedulingpublic class RateScheduleConfig implements SchedulingConfigurer {@Override public void configureTasks(ScheduledTaskRegistrar taskRegistrar) {原创 2016-07-14 17:05:31 · 282 阅读 · 0 评论