/** * Copyright (c) 2005-2012 https://github.com/zhangkaitao * * Licensed under the Apache License, Version 2.0 (the "License"); */ package com.sishuok.chapter2.service; import org.springframework.stereotype.Service; /** * <p>User: Zhang Kaitao * <p>Date: 13-6-21 下午9:29 * <p>Version: 1.0 */ @Service public class UserService { public void sayHello() { System.out.println("hello world"); } }