`
文章列表
tomcat下的项目,部署到weblogic下,需要两个包,一个是 tomcat.jdbc.jar  一个是tomcat-juli.jar
1.应用部署到linux测试环境中,不能抓取,java.net.UnknownHostException,但是本地能访问, 是linux下本身不能访问,可以直接写ip地址或修改host文件的映射 2.windows,host文件位置 C:\Windows\System32\drivers\etc\hosts    linux ,文件位置/etc/hosts      
创建一个干净Spring MVC用Tomcat启动之后一直显示下面这个错误,网上找了很多方法也没有解决问题,后面最终找到终极解决方案   错误信息: SEVERE: Error configuring application listener of class org.springframework.web.context.ContextLoaderListener   解决方案:   1. 打开工程属性对话框,到Deployment Assembly页面,点击Add 2. 选择Jave Build Path Entries 3. 把程序用于的Library加入进来 4. ...

eclipse报错

解决 1.eclipse编译解决版本的问题 http://crunchify.com/exception-in-thread-main-java-lang-unsupportedclassversionerror-comcrunchifymain-unsupported-major-minor-version-51-0/   2.当eclipse导入别处的项目时,报错,看到java文件处并没有错,解决方法是,所有地方都换成jdk版本统一的1.7,具体见 http://jingyan.baidu.com/article/95c9d20da3ec5fec4e756186.html   ...

授权相关

1.给用户scott授权 grant all on orcl to scott;   2.有同义词时,必须给要用到的表授权 grant select,insert,update on scott.V_EA_DICT_INFO to public;   grant select,insert,update on fsm.smp_res_dicts to scott with grant option; grant select,insert,update on fsm.smp_res_dictitems to scott with grant option;     gran ...

批量更新

1.把一个表的内容批量更新到另一张表中,如把user_info_tmp的LASTYEAR_SUMPLAYDAY字段的值更新到user_info表中 update user_info u set u.LASTYEAR_SUMPLAYDAY = (  select ut.LASTYEAR_SUMPLAYDAY from user_info_tmp ut  where ut.user_id = u.user_id ) where exists( select ut.LASTYEAR_SUMPLAYDAY from user_info_tmp ut  where ut.user_id ...
1.建序列使得递增 例子: create table ce_book_log(   id number not null,   state number,   content varchar(200) default null,   bookid varchar(200) default null,   booktitle varchar(200) default null,   createat varchar(50) default null,   constraint PK_ce_book_log primary key (id) ); create sequence ce_book_l ...

for循环优化

1.原: for (int i = 0; i < 1000; i++)       for (int j = 0; j < 100; j++)           for (int k = 0; k < 10; k++)  

linux命令

linux 常用命令: 编辑:vi /etc/hosts  i 可以insert 查看:less /etc/hosts more application.xml cat application.xml   保存退出:wq! 不保存退出 :q!    查看系统多少位: file /sbin/init     重启:reboot shutdown -r now  表示现在重启计算机!   解压war: jar xvf temp.war   在windows下用jdk命令打包: 如果项目发布后在D:\workTool\tomcat\apache-tomcat-6. ...
第一篇文章已经记下了我的点击按钮页面,这儿只写一下连接页面就可以了。 点击生成word时,连接到了creatWord.jsp页面: <%@ page language="java" import="java.util.*,java.net.*" pageEncoding="utf-8"%> <%@page contentType="application/vnd.ms-word"%> <% String path = request.getContextPath(); String b ...
昨天搞了一下午的文件上传下载,文件上传实现了,用的是apache fileupload,而文件下载一直没有搞好,看了看公司的项目,发现文件下载是靠浏览器自动实现的,你只要将你的文件路径写好,文件下载,用户只要点击这个超链接就可以保存文件了,testUpload是我的项目名称,这是从服务器上下载文件,以后再用到下载以后再学习吧 现在说下文件上传功能: index.jsp页面: <html> <head> <script type="text/javascript"> function doSubmit(){      document.f ...
经过几天的学习终于可以实现java中将查询结果存储为Excel,将页面另存word,将html页面存为pdf格式这几个功能了,这是我的第一篇博客,为了共享代码,也为了以后自己的学习成果不会弄丢,现在将这几个功能贴在网上。 一、将查询结果存为excel,我的毕业设计是超市信息管理系统,一个页面将商品信息展示出来了,现在将结果存为excel product.jsp页面 <html> <title>this is my excel</title> <head> <script type="text/javascript"> ...
Global site tag (gtag.js) - Google Analytics