我应该使用会话来实现搜索框吗?



我有一个搜索表单,有以下字段

price, status, owner

当用户填写所有字段时,请求将被发送到后端,以显示具有指定价格、状态和所有者的产品的类别列表。用户可以点击每个类别来查看其产品列表。

为了实现它,我有以下方法来检索类别,并将搜索字段(价格,状态,所有者)放入会话中,以便在搜索的下一页中可用(当选择类别时)。

参数的值可能很长,我更喜欢将它们作为GET,以便为结果添加书签。

public String retrieveCategories(){
        //... here I retrieve categories which their products are matched 
        //with the search fields
        Map session = ActionContext.getContext().getSession();
        session.put("Items", this.items);
        return "SUCCESS";
   }

一旦显示所有类别,用户就可以点击每个类别来查看他们的产品。类别的名称将被发送到后端,因此我将从会话中检索值,以搜索所选类别具有相同规格的产品。

public String retrieveProductsOfSelectedCategory(){
        Map session = ActionContext.getContext().getSession();
        this.items = (Items) session.get("Items");
        //... here I retrieve products of the selected category based on values retrieved
       // from session
   }

我想知道这是否是一个很好的实践,如果不是,你的建议是什么?

不,我不会使用会话来实现它。使用会话有几个不便之处:

  • 它使你的应用程序有状态,这使得它更难集群:来自给定客户端的每个请求都必须转到同一服务器,或者会话必须是持久的或复制的。你在会话中输入的越多,它在内存、存储和带宽方面的成本就越高
  • 由于您使用硬编码的会话密钥来存储您的搜索标准和项目,您不能在同一搜索页面上打开多个选项卡:它们都将共享相同的标准和项目。
  • 清理会话是复杂的:什么时候做?如果您在许多用例上应用此模式,那么您将在会话中得到许多无用的数据。对于生命周期为整个会话的数据,应该使用会话。

干净的解决方案并不难。只需使用隐藏字段或请求参数将数据从一个页面传递到另一个页面:

第一页:

<input type="text" name="price" />
<input type="text" name="owner" />

第二页

Please choose a category:
<ul>
    <li><a href="/products?name=foo&price=12&category=first"></a></li>
    <li><a href="/products?name=foo&price=12&category=second"></a></li>
    <li><a href="/products?name=foo&price=12&category=third"></a></li>
</ul>

映射到/products的操作可以从请求参数中检索名称、价格和类别,并显示结果。并且会话中没有存储任何内容。

您应该实现这样的东西。你可以改变get方法等等,但这是一个非常简单的方法。

import java.util.*;
/**
 * Created by Czipperz on 3/28/2014.
 */
public class Search {
    public static class Item {
        private String price;
        private String status;
        private String owner;
        public Item(String price, String status, String owner) {
            this.price = price;
            this.status = status;
            this.owner = owner;
        }
        public String getPrice() {
            return price;
        }
        public String getStatus() {
            return status;
        }
        public String getOwner() {
            return owner;
        }
    }
    public static class Category {
        private String name;
        private List<Item> items;
        public Category(String name, List<Item> items) {
            this.name = name;
            this.items = items;
        }
        public String getName() {
            return name;
        }
        public List<Item> getItems() {
            return items;
        }
    }
    private List<Category> categories = new ArrayList<Category>();
    //Only compatable with Java 8
    public List<Item> getItems(Category selectedCategory, String price, String status, String owner) {
        //The result array
        ArrayList<Item> result = new ArrayList<Item>();
        //Starts the stream of items (see http://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html)
        selectedCategory.getItems().stream()
                //Filters out all that don't have the price
                .filter((i) -> i.getPrice().equalsIgnoreCase(price))
                //Filters out those that don't have the status
                .filter((i) -> i.getStatus().equalsIgnoreCase(status))
                //Filters out those that don't have the owner.
                .filter((i) -> i.getOwner().equalsIgnoreCase(owner))
                //Has each added to the result List
                .forEach((i) -> result.add(i));
        //Returns the resulting list of correct items.
        return result;

        /*
        Java 7 Version:
         */
        /*
        for(Item i : items) {
            if(i.getPrice().equalsIgnoreCase(price)) {
                if(i.getStatus().equalsIgnoreCase(status)) {
                    if(i.getOwner().equalsIgnoreCase(owner)) {
                        result.add(i);
                    }
                }
            }
        }
         */
    }
    public List<Category> getCategories() {
        return categories;
    }
    public void addCategory(Category category) {
        this.categories.add(category);
    }
}

您建议您希望用户将该页加入书签。你需要一些更持久的东西。您可以使用本地存储,如果本地存储不可用,则恢复为cookie。

相关内容

  • 没有找到相关文章

最新更新