本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- siemens800
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
最新文章列表
springmvc的freemarker视图解析页面时将head部分被解析到body里面
今天遇到一个非常奇怪的问题,虽然解决了,但是无法说清楚原因。
1.问题描述:
inc/decorator.html
<html>
<head>
<title>xxx</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf ...
spring mvc 学习相关资料
这是 starscream 写的关于springmvc 读书笔记 (一共十六,写的比较细,主要是讲了怎么用)
http://starscream.iteye.com/category/158441
以下是 spring揭秘 电子书 在线观看地址:
http://www.memeshu.com/online.f?id=101159
以下是 深入解析Spring MVC与Web Flow 电子书 ...
SpringMVC 中实体类父子类关系设置
SpringMVC 中实体类父子类关系设置
父类:
@Entity
@Table(name="tbl_AlbumSuper")
@Inheritance(strategy=InheritanceType.SINGLE_TABLE)
public class AlbumSuperClass {
@Id
@Column(length = 32)
@ ...
Spring中xxx-servlet.xml和applicationContext.xml的认识
因为直接使用了SpringMVC,所以之前一直不明白xxx-servlet.xml和applicationContext.xml是如何区别的,其实如果直接使用SpringMVC是可以不添加applicationContext.xml文件的。
使用applicationContext.xml文件时是需要在web.xml中添加listener的:
<listener>
<listen ...
flexigrid、sigmagrid、datatables使用
最近把datatables熟悉了下,做了个小的demo,后来想下,以后要是用到类似的grid的时候,为什么不做个集合了,so就有了这个东西了。
项目采用的是spring3mvc+mybatis,应该还比较好用。
引入的js插件有:
lhgdialog 弹出窗口组件
日期插件
jQuery formValidator
数据库脚本在webapp/rea ...
mybatis3+spring3MVC
最近,正在为公司搭建java部门的开发平台,记录下搭建的整个过程。
1. 环境介绍
1.1. JDK
jdk1.6.0_04
1.2. Web服务器
Tomcat6.0.29-windows-x86
1.3. 开发工具
Eclipse3.7
(Version:
Indigo Release ...
Spring3.0MVC和Hibernate基于annotation注解的整合
springmvc和hibernate的annotation集合:
首先web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="htt ...
基于annotation的SpringMVC入门小例子
这几天一直在学SpringMVC,第一次参照网上的例子,直接把SpringMVC基于xml的入门搞定了,但是在用annotation的时候纠结了蛮久的,才搞好,啥也不多说了,上代码。首先是web.xml的:
<?xml version="1.0" encoding="UTF-8"?><web-app version="2 ...
springmvc+jfreechart 超链接
1.后台controller类:
package com.pdcss.project.controller;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.io.IOException;
import java.io.PrintWriter;
import ...
org.apache.catalina.connector.RequestFacade cannot be cast to org.springframewor
spring mvc 上传时
org.apache.catalina.connector.RequestFacade cannot be cast to org.springframework.web.multipart.MultipartHttpServletRequest
解决方法
添加配置:
<bean id="multipartResol ...
Spring MVC拦截器详解
package com.gary.util.spring;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.commons.logging.Log;
import org.apache.commons.l ...