`
文章列表
1.在pom.xml中添加插件依赖 <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>2.5.2</version> <configuration> ...
  package wuyechun.springmvcdemo.controller; import java.io.File; import java.io.IOException; import java.util.HashMap; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpSession; import javax.validation.Valid; import org.apache.commons. ...
myeclipse 6.5 导入项目,在jboss4下运行,报了如下错误:   java.lang.UnsupportedClassVersionError: Bad version number in .class file     解决:   1.Window --> Preferences -->Java -->Installed JRES 2.Server-jboss 4 -jdk   这两个地方要保证和环境中jdk版本一致!
1.让图形页面最大化,减少图形边距。   <chart_background enabled="false">      <inside_margin left="0" top="0" right="0" bottom="0"/></chart_background>   它处于 <chart_settings>      <chart_background>                ............... ...
Ext.getCmp("tabpanel").on("contextmenu", function(tabPanelObj, tab, e) { var contextMenu = new Ext.menu.Menu([ { id : tab.id + "-close", text : "关闭当前选项卡", handler : function() { tabPanelObj.remove(tab); } ...
  一直不理解ehcache中 timeToIdleSeconds和 timeToLiveSeconds 这两个配置的区别,特意找到官方文档看了一下,基本理解了它的意思。 首先看一段原文: What is the difference between TTL, TTI, and eternal? These are three cache attributes that can be used to build an effective eviction configuration. It is advised totest and tune these values to he ...
1.在web.xml中添加过滤器     <filter> <filter-name>ShiroFilter</filter-name> <filter-class>org.apache.shiro.web.servlet.IniShiroFilter</filter-class> </filter> <filter-mapping> <filter-name>ShiroFilter</filter-name> <url-pattern> ...
使用Nexus搭建私有仓库: 1. 下载 nexus-2.2-01-bundle.tar.gz 地址 http://www.sonatype.org/nexus/go 2. 解压缩到:D:\mynexus\  目录下,此时D:\mynexus\ 下有两个文件夹: D:\mynexus\nexus-2.2-01 D:\mynexus\sonatype-work 3.设置系统环境变量 在系统环境变量path追加: ;D:\mynexus\nexus-2.2-01\bin 4.修改wrapper.conf文件: 修改D:\mynexus\nexus-2.2-01\bin\jsw\conf\w ...
本文讲述SpringMVC开发环境快速搭建以及值传递的几种方式, 只包含操作,不包含讲解。   1.New-Dynamic Web Project-springmvc 2.WEB-INF路径下添加依赖包:    1)commons-logging-1.1.1.jar    2)org.springframework.asm-3.1.1.RELEASE.jar    3)org.springframework.beans-3.1.1.RELEASE.jar    4)org.springframework.context-3.1.1.RELE ...
背景: 使用EasyUI 树控件,加载单位树,需求需要同步加载,开始采用ajax请求数据,这样每次都需要请求一次数据,严重影响性能。现改为 web 启动时获取数据,存入application中,前台页面获取数据加载单位树。     之前代码:   $('#orgTree').tree({ url:'orginfo/searchOrgTree?searchKey='+encodeURIComponent(searchKey), onClick : zTreeOnClick, onDblClick : closeOrgWi ...
将页面的某个菜单链接变为灰色,点击无效,使用javascript实现。   function invalidATag(){ var aTag=document.getElementsByTagName("a"); var aqg=aTag[4]; aqg.removeAttribute("href"); aqg.onclick=null; aqg.style.color="#999999"; }   ...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>显示时钟</title> <style type= ...
《读书笔记-原创》 1、Bean容器(载入Bean定义信息,装配Bean,根据需要分发Bean)。 (1)BeanFactoryString filePath = "/wuyechun/hellomyspring/hello.xml";BeanFactory factory = new XmlBeanFactory(new FileSystemResource(filePath));GreetingServiceImpl serviceImpl = (GreetingServiceImpl) factory.getBean("GreetingServic ...
1、使用FileUpload控件 <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Study_FileUpload1.aspx.cs" Inherits="StudyFromNow.Study_FileUpload1" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/x ...

Web基础(1)

    博客分类:
  • JSP
《读书笔记-原创》 一、Sevlet组件(容器-Servlet容器) 1、HttpServletRequest:在request范围内共享数据。2、HttpSession:容器为每个HTTP会话创建一个HttpSession实例,在session范围内共享数据。3、ServletContext:容器为每个Web应用创建一个ServletContext实例,在application范围共享数据。4、HttpServletResponse:用于生成HTTP响应结果。     二、共享数据在web应用中的范围共享数据有4种存在范围: 1、page:用户请求访问的当前JSP网页。 2、requ ...
Global site tag (gtag.js) - Google Analytics