今天小编mail为大家分享的生活小常识,希望能够帮助到大家!
spring注解事务失效情况,spring注解这个很多人还不知道,现在让我们一起来看看吧!
1、@Repository注解:1 package imooc_spring.test.anotation.myrepository;2 3 import org.springframework.stereotype.Repository;4 5 /**6 * 指定id,默认为dAO,即类名首字母小写。
2、如果指定了名称那么只能ctx.getBean(指定名称)来获取bean7 * 这个例子里就只能通过ctx.getBean("wyldao)来获取DAO 的实例了;8 * 9 * @author Wei10 */11 @Repository("wyldao")12 public class DAO {13 /**14 * 返回x和y的乘积15 * 16 * @param x17 * @param y18 * @return x*y19 */20 public int multi(int x, int y) {21 return x * y;22 }23 }复制代码@Component 注解:复制代码1 package imooc_spring.test.anotation;2 3 import org.springframework.stereotype.Component;4 /**5 * Component 注解6 * @author Wei7 *8 */9 @Component10 public class TestObj {11 public void SayHi(){12 System.out.println("Hi this is TestObj.SayHi()...");13 }14 }复制代码@Controller注解:复制代码1 package imooc_spring.test.anotation;2 3 import org.springframework.stereotype.Controller;4 5 @Controller6 public class UserController {7 public void execute(){8 System.out.println("UserController.execute()...");9 }10 }复制代码@Repository注解:复制代码1 package imooc_spring.test.anotation;2 3 import org.springframework.stereotype.Repository;4 5 //@Repository6 @Repository("wyl_repo")7 public class UserRepositoryImpl implements IUserRepository {8 //模拟持久化层9 @Override10 public void save() {11 // TODO Auto-generated method stub12 System.out.println("***.save()...");13 }14 15 }复制代码@Service注解:复制代码1 package imooc_spring.test.anotation;2 3 import org.springframework.stereotype.Service;4 5 @Service6 public class UserService {7 public void add(){8 System.out.println("UserService.add()...");9 }10 }。
Luochuanren.Com洛川人-综合信息门户网站,涵盖生活常识、美食、创业、体育、旅游、家居、汽车、财经、互联网、科技、房产、教育等资讯。
免责声明:我们致力于保护作者版权,注重分享,被刊用文章因无法核实真实出处,未能及时与作者取得联系,或有版权异议的,请联系管理员,我们会立即处理,本文部分文字与图片资源来自于网络,转载此文是出于传递更多信息之目的,若有来源标注错误或侵犯了您的合法权益,请立即通知我们,情况属实,我们会第一时间予以删除,并同时向您表示歉意,谢谢!
工作时间:8:00-18:00
客服电话
17898872021
电子邮件
773537036@qq.com
扫码二维码
获取最新动态