Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. package com.pig.spring.springaop.springaop.data;
  2.  
  3. import org.springframework.stereotype.Repository;
  4.  
  5. @Repository
  6. public class Dao1 {
  7. //提供資料源
  8. public String retriveSomething() {
  9. return "Dao1";
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement