⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testproduct.java

📁 一个经典购物车(shoppingcart)实例代码
💻 JAVA
字号:
package com.jpioneer.application.product.test;

import java.util.List;

import com.jpioneer.application.product.service.ProductService;
import com.jpioneer.application.product.service.impl.ProductServiceImpl;

public class TestProduct {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		ProductService s=new ProductServiceImpl();
		try{
		List l=s.listAllProducts();
		System.out.println(l.size());
		}catch(Exception e){
			e.printStackTrace();
		}
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -