- 浏览: 114488 次
- 性别:
- 来自: 广州
最新评论
-
mponeno:
规则有条件的话,貌似不能触发规则,比如你helloWorld的 ...
读取Guvnor中的规则... -
di1984HIT:
写的很好偶~
Struts + Jboss Drools 规则引擎 -
duyangsss:
你好,我看见你将KnowledgeAgent的方式注释掉了,/ ...
读取Guvnor中的规则... -
chenlinux:
博主,我们现在也要用drools,能否提供一个完整的例子(包括 ...
基于Drools 规则引擎的信用卡申请系统<4> 之 Drools 实现业务规则 -
t22011787:
学习了
Drools 5 for Eclipse 3.5
文章列表
书本上的代码:
<?php
//create short variable names
$name=$_POST['name'];
$email=$_POST['email'];
$feedback=$_POST['feedback'];
//set up some satatic information
$toaddress="feedback@example.com";
$subject="Feedback from web site";
$mailcontent="Cus ...
<html> <head> <title> <? echo "hello world!"; ?> </title> </head> <body> <h1> First PHP page </h1> <? //Single title C++ style coment /* printing the message */ echo "Hello world!!"; # u ...
参照:
http://www.appnitro.com/machform/installation
原文:
第一步
The MachForm installer will not create your database. This must be done prior
to moving on to the installer. Make sure to write down the database name,
username, password, and database host (often localhost) for the database.
Make ...
netstat -ano
taskkill /f /pid 进程号
如:taskkill /f /pid 5212
看到某某用了左连接,右连接之类的,但是概念很模糊了
今天特地弄了一下
简单理解如下:
左连接(左边表为主,右边有相同数据的列出)
select * from project p left join staff s on p.name=s.name;
右连接(右表为主,左边有相同数据的列出)
select * from project p right join staff s on p.name=s.name;
多个left join 或者 right join
select * from ...
用cmd 启动startup 一闪而过
(环境变量已经配置过了)
一个可能原因是server.xml配置有问题(今天遇到的就是这样)
1.tomcat webapps 下新建mvnforum
2.拷贝 mvnforum-1.2.2-mvnad-1.0.1-bin-20100817\webapp_mvnforum_only
到1中的mvnforum下
3. mysq导入 使用命令:source 路径/mvnForum_mysql.sql
4.修改 mvncore.xml
如:
<driver_class_name>com.mysql.jdbc.Driver</driver_class_name>
<database_url>jdbc:mys ...
tomcat 6 (windows 下)
webapps下即使是一个html也总是404
web.xml中添加:(如下)
<?xml version="1.0" encoding="utf-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http:// ...
gedit 写代码
<html>
<head>
<title>my first js in ubuntu
</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
</head>
<body>
<script>
function Sing()
{
with(arguments.callee)
alert(autho ...
ubuntu 10.10 安装ibus-cloud-pinyin云输入法
下载一个deb包来安装
坚决不用make的方式安装,因为没有提供卸载方法!且貌似ibus-cloud-pinyin容易自动退出
tty1(Ctrl+Alt+F1)下显示中文,使用中文
安装zhcon
配置用户目录下的 .bashrc文件
在最下面加入
alias zhcon='zhcon --utf8 --drv=vga'
注:此时在tty1可以用zhcon了,如果不配置.bashrc文件,
而你不嫌zhcon --utf8 --drv=vga命令长的话,可以安装zhcon之后就可以使用了
...
J
ive 2.5
从index.jsp
<% String title = JiveGlobals.getJiveProperty("websiteconf.name"); %>
看jdom解析过程
jiveGlobals.getJiveProperty(String name)
public static String getJiveProperty(String name) {
loadProperties();
return properties.getProperty(name ...
其他东西--硬盘安装
title Install Ubuntu
find --set-root /ubuntu-10.10-desktop-i386.iso
kernel /vmlinuz boot=casper iso-scan/filename=/ubuntu-10.10-desktop-i386.iso locale=zh_CN.UTF-8
initrd /initrd.lz
ubuntu 10.10 报Error RAW EDID 等
sudo gedit /etc/default/grub 修改如下:
GRUB_DEFAULT=0
#G ...
jive 2.5 中读取xml配置文件 之 Properties基础篇
package src;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Properties;
public class PropTest {
public static void main(String[] args) throws FileNotFoundException, IOException {
...
package test;
import jade.core.Agent;
public class Hello extends Agent {
/**
*
*/
private static final long serialVersionUID = 1L;
protected void setup() {
System.out.println("Hello,My name is:"+getLocalName());
}
public void doDelete() {
// TODO Auto-ge ...
复习中,心里没底...
小悲...
进程管理之消息队列
查看ipc对象命令主要有:
ipcs -m 查看共享内存
ipcs -q 查看消息队列
ipcs -s 查看信号量
ipc对象的操作,如删除 ipcrm -q id号
创建一个消息队列
#include <sys/ipc.h>
#include<sys/msg.h>
#include<stdio.h>
#include<stdlib.h>
#include <string .h>
int main()
{
in ...