- 浏览: 764707 次
- 性别:
- 来自: 南京
最新评论
文章列表
该文章原作者网址:http://linux.52zhe.info/read.php/134.htm
所需软件下载路径:
http://commerce.bea.com/showallversions.jsp?family=WLSCH
文件名:server920_zh_CN_linux32.bin
安装比较简单,主要是服务的管理,本文集成了开机自启动的脚本。以及普通用户weblogic的调用管理。
1:以root添加用户,创建BEA_BASE
groupadd bea
useradd -g bea -m weblogic
mkdir /opt/bea
chown bea.weblogic ...
方法1:运行命令到图形界面
#startx ,需要先配置图形界面信息
方法2:修改/etc/inittab文件中的
id:3:initdefault , 将3改为5 ,重新启动系统;
方法3:进入图形界面: init 5
从图形界面进入文本界面: init 3
重启: init 6
关机: init 3
Servlet 学习 (转)
- 博客分类:
- Servlet
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Enumeration;
import java.util.Map;
import javax.servlet.ServletException;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServ ...
Flex 利用 Blazeds上传文件 (转)
- 博客分类:
- Flex
用Flex做业务经常会碰到各种类型的文件上传,如FTP上传、Http上传或者WEB服务形式上传,本文说的利用Blazeds上传文件有点类似Http上传,其原理就是客户端发送byte流,然后服务器端flex.messaging.MessageBrokerServlet接收byte流并生成文件。阅读本文最好了解Flex RemoteObject的使用,了解Blazeds的service调用。
1、新建Blazeds的文件上传服务,其实就是一个普通的Java类
Public class FileUpDownloadService{
/**
*
...
好了,是imp的问题,你可以这样
C:\Documents and Settings\Administrator>imp
Import: Release 10.2.0.1.0 - Production on 星期六 2月 26 18:15:03 2011
Copyright (c) 1982, 2005, Oracle. All rights reserved.
用户名: username
口令:
连接到: Oracle Database 10g Release 10.2.0.1.0 - Production
导入文件: EXPDAT.DMP> F:\***.dmp
输 ...
Java compiler level does not match the version of the installed Java project facet.
在工程目录下的.settings文件夹里,打开org.eclipse.wst.common.project.facet.core.xml文件,其内容是:
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<runtime name="J2EE Runtime Library&quo ...
在工程目录下的.settings文件夹里,打开org.eclipse.wst.common.project.facet.core.xml文件,其内容是:
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<runtime name="J2EE Runtime Library"/>
<fixed facet="java"/>
<fixed facet="jst.utility&q ...
在他们机器上整合好的工程在我机器上总是出现Target runtime Apache Tomcat 6.0 is 解决not defined.这个错误,找工程属性也没有,后来网上找到的方法。
在工程目录下的.settings文件夹里,打开org.eclipse.wst.common.project.facet.core.xml文件,其内容是:
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<runtime name="Apache Tomca ...
1。使用java.util.Properties类的load()方法
示例: InputStream in = lnew BufferedInputStream(new FileInputStream(name));
Properties p = new Properties();
p.load(in);
2。使用java.util.ResourceBundle类的getBundle()方法
示例: ResourceBundle rb = ResourceBundle.getBundle(name, Locale.getDefault());
3。使用java.util.Prop ...
因为目前正在从事一个项目,项目中一个需求就是所有的功能都是插件的形式装入系统,这就需要利用Spring去动态加载某一位置下的配置文件,所以就总结了下Spring中加载xml配置文件的方式,我总结的有6种, xml是最常见的spring 应用系统配置源。Spring中的几种容器都支持使用xml装配bean,包括:
XmlBeanFactory,ClassPathXmlApplicationContext,FileSystemXmlApplicationContext,XmlWebApplicationContext
一: XmlBeanFactory 引用资源
Resource resou ...
作者:http://liuwei1578.blog.163.com/blog/static/495803642007116111923195/
Spring中ApplicationContext加载机制。
加载器目前有两种选择:ContextLoaderListener和ContextLoaderServlet。
这两者在功能上完全等同,只是一个是基于Servlet2.3 ...
- 2011-12-27 18:50
- 浏览 2013
- 评论(0)
0,
There is special support for retrieving multiple class path resources with the same name, via the "classpath*" prefix. For example, "classpath*:/beans.xml" will find all beans.xml files in the class path, be it in "classes" directories or in JAR files. This is partic ...
在设计数据库的时候,选择正确的数据类型,往往可以避免很多的问题,正确理解数据库的类型,对于存储空间规划,应用性能调整都会很有帮助,下面是我个人(gis817)的一点总结:
1、 Char
定长格式字符串,在数据库中存储 ...
java.lang.IllegalStateException: Failed to load ApplicationContext at org.springframework.test.context.TestContext.getApplicationContext(TestContext.java:308) at org.springframework.test.context.support.DependencyInjectionTestExecutionListener.injectDependencies(DependencyInjectionTestExecutionListen ...
<context:annotation-config></context:annotation-config> <context:component-scan base-package="com.frank.test.dao.*"></context:component-scan> <context:component-scan base-package="com..frank.test.service.*"></context:component-scan>
<bean ...