用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - java代码库

在Maven下用Spring+mysql 实现增删查改 软件是idea

2020-06-08 作者: 顾小庭举报

[java]代码库

 //删除
    @Test
    public void dele(){
        ApplicationContext ac=new AnnotationConfigApplicationContext(SpringConfiguration.class);
        try {
            accountService= (AccountService) ac.getBean("accountService");

            int a= accountService.deleteAccount(3);
            System.out.println(a+"删除成功!!!");
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }

    //修改
    @Test
    public void update(){
        ApplicationContext ac=new AnnotationConfigApplicationContext(SpringConfiguration.class);
        try {
            accountService= (AccountService) ac.getBean("accountService");
           Account account= accountService.findByID(4);
             account.setName("王五");
             account.setMoney(3000.0);
            int a= accountService.updateAccount(account);
            System.out.println(a+"修改成功!!!");
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
 //添加
    @Test
    public void add(){
        ApplicationContext ac=new AnnotationConfigApplicationContext(SpringConfiguration.class);
        try {
            accountService= (AccountService) ac.getBean("accountService");
            Account account=new Account();
            account.setName("Lucy");
            account.setMoney(5000.0);
           int a= accountService.add_account(account);
            System.out.println(a+"添加成功!!!");
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
 //全查
    @Test
    public void findAll(){
        //加载配置类
        ApplicationContext ac=new AnnotationConfigApplicationContext(SpringConfiguration.class);

        //创建业务层对象
        AccountService accountService= (AccountService) ac.getBean("accountService");
        try {
            List<Account>    accounts= accountService.findAll();
            for (Account a: accounts) {
                System.out.println(a);
            }
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }

[源代码打包下载]




网友评论    (发表评论)


发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...