├── .gitattributes ├── .github └── workflows │ ├── ci.yaml │ ├── codeql.yml │ ├── coveralls.yaml │ ├── site.yaml │ ├── sonar.yaml │ ├── sonatype.yaml │ └── support.yaml ├── .gitignore ├── .mvn ├── extensions.xml ├── maven.config ├── settings.xml └── wrapper │ ├── MavenWrapperDownloader.java │ └── maven-wrapper.properties ├── Dockerfile ├── LICENSE ├── LICENSE_HEADER ├── NOTICE ├── README.md ├── docker-compose.yaml ├── format.xml ├── mvnw ├── mvnw.cmd ├── pom.xml ├── renovate.json └── src ├── main ├── java │ └── org │ │ └── mybatis │ │ └── jpetstore │ │ ├── domain │ │ ├── Account.java │ │ ├── Cart.java │ │ ├── CartItem.java │ │ ├── Category.java │ │ ├── Item.java │ │ ├── LineItem.java │ │ ├── Order.java │ │ ├── Product.java │ │ └── Sequence.java │ │ ├── mapper │ │ ├── AccountMapper.java │ │ ├── CategoryMapper.java │ │ ├── ItemMapper.java │ │ ├── LineItemMapper.java │ │ ├── OrderMapper.java │ │ ├── ProductMapper.java │ │ └── SequenceMapper.java │ │ ├── service │ │ ├── AccountService.java │ │ ├── CatalogService.java │ │ └── OrderService.java │ │ └── web │ │ └── actions │ │ ├── AbstractActionBean.java │ │ ├── AccountActionBean.java │ │ ├── CartActionBean.java │ │ ├── CatalogActionBean.java │ │ └── OrderActionBean.java ├── resources │ ├── StripesResources.properties │ ├── database │ │ ├── jpetstore-hsqldb-data.sql │ │ ├── jpetstore-hsqldb-dataload.sql │ │ └── jpetstore-hsqldb-schema.sql │ └── org │ │ └── mybatis │ │ └── jpetstore │ │ └── mapper │ │ ├── AccountMapper.xml │ │ ├── CategoryMapper.xml │ │ ├── ItemMapper.xml │ │ ├── LineItemMapper.xml │ │ ├── OrderMapper.xml │ │ ├── ProductMapper.xml │ │ └── SequenceMapper.xml └── webapp │ ├── WEB-INF │ ├── applicationContext.xml │ ├── jsp │ │ ├── account │ │ │ ├── EditAccountForm.jsp │ │ │ ├── IncludeAccountFields.jsp │ │ │ ├── NewAccountForm.jsp │ │ │ └── SignonForm.jsp │ │ ├── cart │ │ │ ├── Cart.jsp │ │ │ ├── Checkout.jsp │ │ │ └── IncludeMyList.jsp │ │ ├── catalog │ │ │ ├── Category.jsp │ │ │ ├── Item.jsp │ │ │ ├── Main.jsp │ │ │ ├── Product.jsp │ │ │ └── SearchProducts.jsp │ │ ├── common │ │ │ ├── Error.jsp │ │ │ ├── IncludeBottom.jsp │ │ │ └── IncludeTop.jsp │ │ └── order │ │ │ ├── ConfirmOrder.jsp │ │ │ ├── ListOrders.jsp │ │ │ ├── NewOrderForm.jsp │ │ │ ├── ShippingForm.jsp │ │ │ └── ViewOrder.jsp │ └── web.xml │ ├── css │ └── jpetstore.css │ ├── help.html │ ├── images │ ├── banner_birds.gif │ ├── banner_cats.gif │ ├── banner_dogs.gif │ ├── banner_fish.gif │ ├── banner_reptiles.gif │ ├── bird1.gif │ ├── bird2.gif │ ├── birds_icon.gif │ ├── cart.gif │ ├── cat1.gif │ ├── cat2.gif │ ├── cats_icon.gif │ ├── dog1.gif │ ├── dog2.gif │ ├── dog3.gif │ ├── dog4.gif │ ├── dog5.gif │ ├── dog6.gif │ ├── dogs.gif │ ├── dogs_icon.gif │ ├── fish.gif │ ├── fish1.gif │ ├── fish2.gif │ ├── fish3.gif │ ├── fish4.gif │ ├── fish_icon.gif │ ├── lizard1.gif │ ├── logo-topbar.gif │ ├── poweredby.gif │ ├── reptiles_icon.gif │ ├── separator.gif │ ├── sm_birds.gif │ ├── sm_cats.gif │ ├── sm_dogs.gif │ ├── sm_fish.gif │ ├── sm_reptiles.gif │ ├── snake1.gif │ └── splash.gif │ └── index.html ├── site ├── es │ └── xdoc │ │ └── index.xml ├── ja │ └── xdoc │ │ └── index.xml ├── ko │ └── xdoc │ │ └── index.xml ├── resources │ ├── css │ │ └── site.css │ └── images │ │ ├── en.png │ │ ├── es.png │ │ ├── fr.png │ │ ├── ja.png │ │ ├── ko.png │ │ └── zh.png ├── site.xml ├── site_es.xml ├── site_ja.xml ├── site_ko.xml └── xdoc │ └── index.xml └── test ├── java └── org │ └── mybatis │ └── jpetstore │ ├── ScreenTransitionIT.java │ ├── domain │ ├── CartTest.java │ └── OrderTest.java │ ├── mapper │ ├── AccountMapperTest.java │ ├── CategoryMapperTest.java │ ├── ItemMapperTest.java │ ├── LineItemMapperTest.java │ ├── MapperTestContext.java │ ├── OrderMapperTest.java │ ├── ProductMapperTest.java │ └── SequenceMapperTest.java │ ├── service │ ├── AccountServiceTest.java │ ├── CatalogServiceTest.java │ └── OrderServiceTest.java │ └── web │ └── actions │ ├── AccountActionBeanTest.java │ ├── CatalogActionBeanTest.java │ └── OrderActionBeanTest.java └── resources └── .gitkeep /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/coveralls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/.github/workflows/coveralls.yaml -------------------------------------------------------------------------------- /.github/workflows/site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/.github/workflows/site.yaml -------------------------------------------------------------------------------- /.github/workflows/sonar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/.github/workflows/sonar.yaml -------------------------------------------------------------------------------- /.github/workflows/sonatype.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/.github/workflows/sonatype.yaml -------------------------------------------------------------------------------- /.github/workflows/support.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/.github/workflows/support.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/.mvn/extensions.xml -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/.mvn/maven.config -------------------------------------------------------------------------------- /.mvn/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/.mvn/settings.xml -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_HEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/LICENSE_HEADER -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/format.xml -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/pom.xml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/renovate.json -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/domain/Account.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/domain/Account.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/domain/Cart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/domain/Cart.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/domain/CartItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/domain/CartItem.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/domain/Category.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/domain/Category.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/domain/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/domain/Item.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/domain/LineItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/domain/LineItem.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/domain/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/domain/Order.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/domain/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/domain/Product.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/domain/Sequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/domain/Sequence.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/mapper/AccountMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/mapper/AccountMapper.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/mapper/CategoryMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/mapper/CategoryMapper.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/mapper/ItemMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/mapper/ItemMapper.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/mapper/LineItemMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/mapper/LineItemMapper.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/mapper/OrderMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/mapper/OrderMapper.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/mapper/ProductMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/mapper/ProductMapper.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/mapper/SequenceMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/mapper/SequenceMapper.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/service/AccountService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/service/AccountService.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/service/CatalogService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/service/CatalogService.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/service/OrderService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/service/OrderService.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/web/actions/AbstractActionBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/web/actions/AbstractActionBean.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/web/actions/AccountActionBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/web/actions/AccountActionBean.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/web/actions/CartActionBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/web/actions/CartActionBean.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/web/actions/CatalogActionBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/web/actions/CatalogActionBean.java -------------------------------------------------------------------------------- /src/main/java/org/mybatis/jpetstore/web/actions/OrderActionBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/java/org/mybatis/jpetstore/web/actions/OrderActionBean.java -------------------------------------------------------------------------------- /src/main/resources/StripesResources.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/resources/StripesResources.properties -------------------------------------------------------------------------------- /src/main/resources/database/jpetstore-hsqldb-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/resources/database/jpetstore-hsqldb-data.sql -------------------------------------------------------------------------------- /src/main/resources/database/jpetstore-hsqldb-dataload.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/resources/database/jpetstore-hsqldb-dataload.sql -------------------------------------------------------------------------------- /src/main/resources/database/jpetstore-hsqldb-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/resources/database/jpetstore-hsqldb-schema.sql -------------------------------------------------------------------------------- /src/main/resources/org/mybatis/jpetstore/mapper/AccountMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/resources/org/mybatis/jpetstore/mapper/AccountMapper.xml -------------------------------------------------------------------------------- /src/main/resources/org/mybatis/jpetstore/mapper/CategoryMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/resources/org/mybatis/jpetstore/mapper/CategoryMapper.xml -------------------------------------------------------------------------------- /src/main/resources/org/mybatis/jpetstore/mapper/ItemMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/resources/org/mybatis/jpetstore/mapper/ItemMapper.xml -------------------------------------------------------------------------------- /src/main/resources/org/mybatis/jpetstore/mapper/LineItemMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/resources/org/mybatis/jpetstore/mapper/LineItemMapper.xml -------------------------------------------------------------------------------- /src/main/resources/org/mybatis/jpetstore/mapper/OrderMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/resources/org/mybatis/jpetstore/mapper/OrderMapper.xml -------------------------------------------------------------------------------- /src/main/resources/org/mybatis/jpetstore/mapper/ProductMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/resources/org/mybatis/jpetstore/mapper/ProductMapper.xml -------------------------------------------------------------------------------- /src/main/resources/org/mybatis/jpetstore/mapper/SequenceMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/resources/org/mybatis/jpetstore/mapper/SequenceMapper.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/applicationContext.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/account/EditAccountForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/account/EditAccountForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/account/IncludeAccountFields.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/account/IncludeAccountFields.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/account/NewAccountForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/account/NewAccountForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/account/SignonForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/account/SignonForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/cart/Cart.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/cart/Cart.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/cart/Checkout.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/cart/Checkout.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/cart/IncludeMyList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/cart/IncludeMyList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/catalog/Category.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/catalog/Category.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/catalog/Item.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/catalog/Item.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/catalog/Main.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/catalog/Main.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/catalog/Product.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/catalog/Product.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/catalog/SearchProducts.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/catalog/SearchProducts.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/common/Error.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/common/Error.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/common/IncludeBottom.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/common/IncludeBottom.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/common/IncludeTop.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/common/IncludeTop.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/order/ConfirmOrder.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/order/ConfirmOrder.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/order/ListOrders.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/order/ListOrders.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/order/NewOrderForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/order/NewOrderForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/order/ShippingForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/order/ShippingForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/order/ViewOrder.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/jsp/order/ViewOrder.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/css/jpetstore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/css/jpetstore.css -------------------------------------------------------------------------------- /src/main/webapp/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/help.html -------------------------------------------------------------------------------- /src/main/webapp/images/banner_birds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/banner_birds.gif -------------------------------------------------------------------------------- /src/main/webapp/images/banner_cats.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/banner_cats.gif -------------------------------------------------------------------------------- /src/main/webapp/images/banner_dogs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/banner_dogs.gif -------------------------------------------------------------------------------- /src/main/webapp/images/banner_fish.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/banner_fish.gif -------------------------------------------------------------------------------- /src/main/webapp/images/banner_reptiles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/banner_reptiles.gif -------------------------------------------------------------------------------- /src/main/webapp/images/bird1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/bird1.gif -------------------------------------------------------------------------------- /src/main/webapp/images/bird2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/bird2.gif -------------------------------------------------------------------------------- /src/main/webapp/images/birds_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/birds_icon.gif -------------------------------------------------------------------------------- /src/main/webapp/images/cart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/cart.gif -------------------------------------------------------------------------------- /src/main/webapp/images/cat1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/cat1.gif -------------------------------------------------------------------------------- /src/main/webapp/images/cat2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/cat2.gif -------------------------------------------------------------------------------- /src/main/webapp/images/cats_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/cats_icon.gif -------------------------------------------------------------------------------- /src/main/webapp/images/dog1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/dog1.gif -------------------------------------------------------------------------------- /src/main/webapp/images/dog2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/dog2.gif -------------------------------------------------------------------------------- /src/main/webapp/images/dog3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/dog3.gif -------------------------------------------------------------------------------- /src/main/webapp/images/dog4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/dog4.gif -------------------------------------------------------------------------------- /src/main/webapp/images/dog5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/dog5.gif -------------------------------------------------------------------------------- /src/main/webapp/images/dog6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/dog6.gif -------------------------------------------------------------------------------- /src/main/webapp/images/dogs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/dogs.gif -------------------------------------------------------------------------------- /src/main/webapp/images/dogs_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/dogs_icon.gif -------------------------------------------------------------------------------- /src/main/webapp/images/fish.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/fish.gif -------------------------------------------------------------------------------- /src/main/webapp/images/fish1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/fish1.gif -------------------------------------------------------------------------------- /src/main/webapp/images/fish2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/fish2.gif -------------------------------------------------------------------------------- /src/main/webapp/images/fish3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/fish3.gif -------------------------------------------------------------------------------- /src/main/webapp/images/fish4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/fish4.gif -------------------------------------------------------------------------------- /src/main/webapp/images/fish_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/fish_icon.gif -------------------------------------------------------------------------------- /src/main/webapp/images/lizard1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/lizard1.gif -------------------------------------------------------------------------------- /src/main/webapp/images/logo-topbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/logo-topbar.gif -------------------------------------------------------------------------------- /src/main/webapp/images/poweredby.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/poweredby.gif -------------------------------------------------------------------------------- /src/main/webapp/images/reptiles_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/reptiles_icon.gif -------------------------------------------------------------------------------- /src/main/webapp/images/separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/separator.gif -------------------------------------------------------------------------------- /src/main/webapp/images/sm_birds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/sm_birds.gif -------------------------------------------------------------------------------- /src/main/webapp/images/sm_cats.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/sm_cats.gif -------------------------------------------------------------------------------- /src/main/webapp/images/sm_dogs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/sm_dogs.gif -------------------------------------------------------------------------------- /src/main/webapp/images/sm_fish.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/sm_fish.gif -------------------------------------------------------------------------------- /src/main/webapp/images/sm_reptiles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/sm_reptiles.gif -------------------------------------------------------------------------------- /src/main/webapp/images/snake1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/snake1.gif -------------------------------------------------------------------------------- /src/main/webapp/images/splash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/images/splash.gif -------------------------------------------------------------------------------- /src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/main/webapp/index.html -------------------------------------------------------------------------------- /src/site/es/xdoc/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/site/es/xdoc/index.xml -------------------------------------------------------------------------------- /src/site/ja/xdoc/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/site/ja/xdoc/index.xml -------------------------------------------------------------------------------- /src/site/ko/xdoc/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/site/ko/xdoc/index.xml -------------------------------------------------------------------------------- /src/site/resources/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/site/resources/css/site.css -------------------------------------------------------------------------------- /src/site/resources/images/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/site/resources/images/en.png -------------------------------------------------------------------------------- /src/site/resources/images/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/site/resources/images/es.png -------------------------------------------------------------------------------- /src/site/resources/images/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/site/resources/images/fr.png -------------------------------------------------------------------------------- /src/site/resources/images/ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/site/resources/images/ja.png -------------------------------------------------------------------------------- /src/site/resources/images/ko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/site/resources/images/ko.png -------------------------------------------------------------------------------- /src/site/resources/images/zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/site/resources/images/zh.png -------------------------------------------------------------------------------- /src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/site/site.xml -------------------------------------------------------------------------------- /src/site/site_es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/site/site_es.xml -------------------------------------------------------------------------------- /src/site/site_ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/site/site_ja.xml -------------------------------------------------------------------------------- /src/site/site_ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/site/site_ko.xml -------------------------------------------------------------------------------- /src/site/xdoc/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/site/xdoc/index.xml -------------------------------------------------------------------------------- /src/test/java/org/mybatis/jpetstore/ScreenTransitionIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/test/java/org/mybatis/jpetstore/ScreenTransitionIT.java -------------------------------------------------------------------------------- /src/test/java/org/mybatis/jpetstore/domain/CartTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/test/java/org/mybatis/jpetstore/domain/CartTest.java -------------------------------------------------------------------------------- /src/test/java/org/mybatis/jpetstore/domain/OrderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/test/java/org/mybatis/jpetstore/domain/OrderTest.java -------------------------------------------------------------------------------- /src/test/java/org/mybatis/jpetstore/mapper/AccountMapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/test/java/org/mybatis/jpetstore/mapper/AccountMapperTest.java -------------------------------------------------------------------------------- /src/test/java/org/mybatis/jpetstore/mapper/CategoryMapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/test/java/org/mybatis/jpetstore/mapper/CategoryMapperTest.java -------------------------------------------------------------------------------- /src/test/java/org/mybatis/jpetstore/mapper/ItemMapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/test/java/org/mybatis/jpetstore/mapper/ItemMapperTest.java -------------------------------------------------------------------------------- /src/test/java/org/mybatis/jpetstore/mapper/LineItemMapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/test/java/org/mybatis/jpetstore/mapper/LineItemMapperTest.java -------------------------------------------------------------------------------- /src/test/java/org/mybatis/jpetstore/mapper/MapperTestContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/test/java/org/mybatis/jpetstore/mapper/MapperTestContext.java -------------------------------------------------------------------------------- /src/test/java/org/mybatis/jpetstore/mapper/OrderMapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/test/java/org/mybatis/jpetstore/mapper/OrderMapperTest.java -------------------------------------------------------------------------------- /src/test/java/org/mybatis/jpetstore/mapper/ProductMapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/test/java/org/mybatis/jpetstore/mapper/ProductMapperTest.java -------------------------------------------------------------------------------- /src/test/java/org/mybatis/jpetstore/mapper/SequenceMapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/test/java/org/mybatis/jpetstore/mapper/SequenceMapperTest.java -------------------------------------------------------------------------------- /src/test/java/org/mybatis/jpetstore/service/AccountServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/test/java/org/mybatis/jpetstore/service/AccountServiceTest.java -------------------------------------------------------------------------------- /src/test/java/org/mybatis/jpetstore/service/CatalogServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/test/java/org/mybatis/jpetstore/service/CatalogServiceTest.java -------------------------------------------------------------------------------- /src/test/java/org/mybatis/jpetstore/service/OrderServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/test/java/org/mybatis/jpetstore/service/OrderServiceTest.java -------------------------------------------------------------------------------- /src/test/java/org/mybatis/jpetstore/web/actions/AccountActionBeanTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/test/java/org/mybatis/jpetstore/web/actions/AccountActionBeanTest.java -------------------------------------------------------------------------------- /src/test/java/org/mybatis/jpetstore/web/actions/CatalogActionBeanTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/test/java/org/mybatis/jpetstore/web/actions/CatalogActionBeanTest.java -------------------------------------------------------------------------------- /src/test/java/org/mybatis/jpetstore/web/actions/OrderActionBeanTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mybatis/jpetstore-6/HEAD/src/test/java/org/mybatis/jpetstore/web/actions/OrderActionBeanTest.java -------------------------------------------------------------------------------- /src/test/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------