- 浏览: 13939 次
- 性别:
- 来自: 南昌
最新评论
文章列表
修改IP永久生效按以下方法
vi /etc/sysconfig/network-scripts/ifcfg-eth0(eth0,第一块网卡,如果是第二块则为eth1)
按如下修改ip
DEVICE=eth0(如果是第二块刚为eth1)
BOOTPROTO=static
IPADDR=192.168.0.11(改成要设置的IP)
NETMASK=255.255.255.0 (子网掩码)
GATEWAY=192.168.0.1(网关)
ONBOO=yes
默认可能是dhcp的
然后
service network restart
IP地址生效,重启系统后不变
如果是临时修改IP重启系统后恢复原 ...
linux 修改开机启动为字符界面
修改/etc/inittab (inittab是个文件)
打开文件后,找到
id:5:initdefault:
其中的5就是x-window为默认运行级
将5改为3即可
重启命令:
1、reboot
2、shutdown -r now 立刻重启(root用户使用)
3、shutdown -r 10 过10分钟自动重启(root用户使用)
4、shutdown -r 20:35 在时间为20:35时候重启(root用户使用)
关机命令:
1、halt 立刻关机
2、poweroff 立刻关机
3、shutdown -h now 立刻关机(roo ...
MySQL查询区分大小写
CREATE TABLE students(
name VARCHAR(10)
);
mysql查询默认是不区分大小写的 如:
select * from students where name like 'a%'
select * from students where name like 'A%'
效果是一样的。
要让mysql查询区分大小写,可以:
select * from students where binary name like 'a%'
select * from students where binary name like 'A%'
另一 ...
study
package com.java.duncan;
class Node {
public int value;
public Node next;
public Node() {
value = -1;
next = null;
}
public Node(int i) {
value = i;
next = null;
...
Hibernate 实体映射文件中 写 hql/sql 语句
在使用Hibernate做开发时,可以直接在源代码里写 HQL/SQL,也可以利用hibernate 实体映射文件中写HQL/SQL
下面介绍在实体映射文件中写HQL/SQL
实体映射文件: user.hbm.xml
<hibernate-mapping>
<class name="org.tie.User" table="user" catalog="tie">
<id name="i ...
Dozer用于 model 之间转换
Maven 引用dozer 5.4.0
<dependency>
<groupId>net.sf.dozer</groupId>
<artifactId>dozer</artifactId>
<version>5.4.0</version>
</dependency>
1. Book
package entity;
public class Book {
private String name;
pri ...
MQ study
- 博客分类:
- Websphere MQ
一、简述
EJB2.0开始,引进了消息驱动的EJB,简称MDB(message driven bean)。当MOM收到消息时,能够自动传达给这种Bean。跟事件驱动一个道理。注:只是接收驱动。
EJB2.1,MDB又得到了加强,能够处理非JMS的消息,如:MailMessage,SMSMessage,SOAPMessage。
二、例子
见上章提到的源码。
(1)MDBQueueBean.java 这是EJB,它不需要其它什么 Home,Remote等接口。
(2)ejb-jar.xml EJB描述。跟其它类型的EJB的描述大不一样。
(3)jboss.xml JBOSS部署的描述。
...
ejb project: cust
public class StatelessCounterBean implements StatelessCounterBeanRemote, StatelessCounterBeanLocal {
/**
* Default constructor.
*/
public StatelessCounterBean() {
}
@Override
public int getTheValue() {
System.out.println("Say Hello!!&quo ...
websphere MQ3
- 博客分类:
- Websphere MQ
大纲:
Creating the queue manager
Creating the local queue
Putting a test message on the local queue
Verifying that the test message was sent
1.Creating the queue manager using WebSphere MQ Explorer
Start WebSphere MQ Explorer.
In the Navigator view, right-click the Queue Managers fol ...
Websphere MQ2
- 博客分类:
- Websphere MQ
package com.ibm.test;
import java.io.IOException;
import com.ibm.mq.MQC;
import com.ibm.mq.MQException;
import com.ibm.mq.MQGetMessageOptions;
import com.ibm.mq.MQMessage;
import com.ibm.mq.MQPutMessageOptions;
import com.ibm.mq.MQQueue;
import com.ibm.mq.MQQueueManager;
pu ...
Websphere MQ
- 博客分类:
- Websphere MQ
今天做了一个request/reply模式的MQ例子程序。
一个程序把消息放在Q上,请求的程序会在把消息放到Q上之前设置replyToQueue和replyToQueueManager消息标题属性。而后它打开回复队列并等待correlationId匹配已发出请求消息的MessageId值的消息。
另一个程序是在接受到消息后判断如果是请求消息的话,则生成回复消息并发到请求消息指定的消息队列上。它还将拷贝请求消息的MessageId到回复消息的correlationId消息标题字段上。
程序的代码如下:
import com.ibm.mq.*;/**
* @author ralph
* ...