Fix Duplicate Names of Controllers

This commit is contained in:
CodeSteak 2020-05-01 10:48:12 +02:00
parent 411760e1d4
commit da9a737fd0
11 changed files with 12 additions and 12 deletions

View File

@ -1,8 +1,8 @@
package org.hso.ecommerce.controller; package org.hso.ecommerce.controller.intern;
import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
@Controller @Controller
//@RequestMapping("...") //@RequestMapping("...")
public class ArticleController { public class InternArticleController {
} }

View File

@ -4,5 +4,5 @@ import org.springframework.stereotype.Controller;
@Controller @Controller
//@RequestMapping("...") //@RequestMapping("...")
public class IndexController { public class InternIndexController {
} }

View File

@ -4,5 +4,5 @@ import org.springframework.stereotype.Controller;
@Controller @Controller
//@RequestMapping("...") //@RequestMapping("...")
public class IndexController { public class CustomerOrderController {
} }

View File

@ -4,5 +4,5 @@ import org.springframework.stereotype.Controller;
@Controller @Controller
//@RequestMapping("...") //@RequestMapping("...")
public class OrderController { public class CustomersIndexController {
} }

View File

@ -4,5 +4,5 @@ import org.springframework.stereotype.Controller;
@Controller @Controller
//@RequestMapping("...") //@RequestMapping("...")
public class IndexController { public class SupplierIndexController {
} }

View File

@ -4,5 +4,5 @@ import org.springframework.stereotype.Controller;
@Controller @Controller
//@RequestMapping("...") //@RequestMapping("...")
public class OfferController { public class SupplierOfferController {
} }

View File

@ -4,5 +4,5 @@ import org.springframework.stereotype.Controller;
@Controller @Controller
//@RequestMapping("...") //@RequestMapping("...")
public class OrderController { public class SupplierOrderController {
} }

View File

@ -4,5 +4,5 @@ import org.springframework.stereotype.Controller;
@Controller @Controller
//@RequestMapping("...") //@RequestMapping("...")
public class ArticleController { public class ShopArticleController {
} }

View File

@ -4,5 +4,5 @@ import org.springframework.stereotype.Controller;
@Controller @Controller
//@RequestMapping("...") //@RequestMapping("...")
public class CheckoutController { public class ShopCheckoutController {
} }

View File

@ -4,5 +4,5 @@ import org.springframework.stereotype.Controller;
@Controller @Controller
//@RequestMapping("...") //@RequestMapping("...")
public class IndexController { public class ShopIndexController {
} }

View File

@ -4,5 +4,5 @@ import org.springframework.stereotype.Controller;
@Controller @Controller
//@RequestMapping("...") //@RequestMapping("...")
public class SearchController { public class ShopSearchController {
} }