- 浏览: 4460 次
- 性别:
- 来自: 北京
最新评论
文章列表
ddsdsfsfs
项目中碰到了Junit和Spring整合的问题,对于通过注解方式注入的bean,稍微有点麻烦,总结如下:
1. 在项目pom.xml中添加对spring-test包的依赖,非maven工程可直接通过build path添加该包
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>3.1.0.RELEASE< ...
这两天在看《The Linux Kernel Module Programming Guide》,自己尝试从书中的样例入手,编写简单的内核模块。在编译的过程中遇到了一些问题,总结如下。
1. 编写模块代码hello.c
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
static int hello_init(void)
{
printk(KERN_ALERT"hello, world./n") ...
(原文地址:http://www.cyberciti.biz/tips/compiling-linux-kernel-26.html)How to: Compile Linux kernel 2.6
by NIXCRAFT on SEPTEMBER 29, 2005 · 131 COMMENTS
Compiling custom kernel has its own advantages and disadvantages. However, new Linux user / admin find it difficult to compile Linux kernel. Compiling ...