我已经尝试了大约一个小时,现在注册一个编解码器,我为我的一个课程在一个游戏中,我正在工作。该类名为item
。我尝试了这3个地方的代码和建议:
下面是我用的代码:
CodecRegistry defaultCodecRegistry = MongoClient.getDefaultCodecRegistry();
MyCodecProvider myCodecProvider = new MyCodecProvider();
ItemCodec itemCodec = new ItemCodec(defaultCodecRegistry);
CodecRegistry codecRegistry = CodecRegistries.fromRegistries(CodecRegistries.fromCodecs(itemCodec), CodecRegistries.fromProviders(myCodecProvider), defaultCodecRegistry);;
MongoClientOptions options = MongoClientOptions.builder().codecRegistry(codecRegistry).build();
client = new MongoClient("localhost:27017", options);
所以我构建了一个名为mycodecprovider
的编解码器和编解码器提供程序,那么我做错了什么,怎么会这么复杂呢?我是不是漏掉了什么?它似乎比它需要的要复杂得多。如果你需要更多的代码,请询问。谢了。
Edit:我得到的确切错误是org.bson.codecs.comfiguration.codecConfigurationException:找不到类[lnet.hollowbit.archipeloserver.items.Item;]的编解码器。
另外,我正试图解析一个项数组,我是否也需要为该数组专门制作一个编解码器?
您可以使用ArrayList对数组进行Mongo编解码器,如下所示:
这是表示订单的类。它包括一个项目的ArrayList。
package com.example.model;
import java.util.ArrayList;
import org.bson.types.ObjectId;
/**
* Class representing an Order.
*/
public class Order
{
private ObjectId id;
private ArrayList<Item> items;
/**
* Default constructor. Needed for testing.
*/
public Order() {
this.items = new ArrayList<>();
}
/**
* Sets the id of the Order.
* @param id The new id of the Order.
*/
public void setId(ObjectId id) {
this.id = id;
}
/**
* Gets the id of the Order.
* @return The id of the Order.
*/
public ObjectId getId() {
return this.id;
}
/**
* Sets the items for the Order.
* @param items The items for the Order.
*/
public void setItems(ArrayList<Item> items) {
this.items = items;
}
/**
* Gets the items for the Order.
* @return The items for the Order.
*/
public ArrayList<Item> getItems() {
return items;
}
/**
* Adds an item to the Order.
* @param item The new Item to add to the Order.
*/
public void addItem(Item item) {
this.items.add(item);
}
}
这是表示订单项的类。可以有任意数量的项目是一个订单的一部分。项目被嵌入到Mongo中的订单文档中。
package com.example.model;
import org.bson.types.ObjectId;
/**
* Class representing an order item.
*/
public class Item
{
private ObjectId id;
private String name;
/**
* Constructor.
*/
public Item() {
//
}
/**
* Sets the id of the Item.
* @param id The new id of the Item.
*/
public void setId(ObjectId id) {
this.id = id;
}
/**
* Gets the id of the Item.
* @return The id of the Item.
*/
public ObjectId getId() {
return this.id;
}
/**
* Sets the name of the Item.
* @param name The new name of the Item.
*/
public void setName(String name) {
this.name = name;
}
/**
* Gets the name of the Item.
* @return The name of the Item.
*/
public String getName() {
return this.name;
}
}
简单的converter类,用于将项转换到/从文档转换。
package com.example.mongo;
import com.example.model.Item;
import org.bson.Document;
/**
* Converts Mongo Documents to/from Items.
*/
public class ItemConverter {
/**
* Convert the passed Item into a Mongo Document.
* @param item The Item that you want to convert into a Mongo Document.
* @return Returns the Document that was created from the passed Item.
*/
public Document convert(Item item) {
Document document = new Document();
document.put("_id", item.getId());
document.put("name", item.getName());
return document;
}
/**
* Convert the passed Mongo Document into an Item.
* @param document The Document that you want to convert into an Item.
* @return Returns the Item that was created from the passed Mongo Document.
*/
public Item convert(Document document) {
Item item = new Item();
item.setId(document.getObjectId("_id"));
item.setName(document.getString("name"));
return item;
}
}
用于编码和解码项的编解码器。
package com.example.mongo;
import com.example.model.Item;
import com.mongodb.MongoClient;
import org.bson.BsonReader;
import org.bson.BsonString;
import org.bson.BsonValue;
import org.bson.BsonWriter;
import org.bson.Document;
import org.bson.codecs.Codec;
import org.bson.codecs.CollectibleCodec;
import org.bson.codecs.DecoderContext;
import org.bson.codecs.EncoderContext;
import org.bson.codecs.configuration.CodecRegistry;
import org.bson.types.ObjectId;
/**
* Mongo Decoder for Items.
*/
public class ItemCodec implements CollectibleCodec<Item> {
private final CodecRegistry registry;
private final Codec<Document> documentCodec;
private final ItemConverter converter;
/**
* Default constructor.
*/
public ItemCodec() {
this.registry = MongoClient.getDefaultCodecRegistry();
this.documentCodec = this.registry.get(Document.class);
this.converter = new ItemConverter();
}
/**
* Codec constructor.
* @param codec The existing codec to use.
*/
public ItemCodec(Codec<Document> codec) {
this.documentCodec = codec;
this.registry = MongoClient.getDefaultCodecRegistry();
this.converter = new ItemConverter();
}
/**
* Registry constructor.
* @param registry The CodecRegistry to use.
*/
public ItemCodec(CodecRegistry registry) {
this.registry = registry;
this.documentCodec = this.registry.get(Document.class);
this.converter = new ItemConverter();
}
/**
* Encode the passed Item into a Mongo/BSON document.
* @param writer The writer to use for encoding.
* @param item The Item to encode.
* @param encoderContext The EncoderContext to use for encoding.
*/
@Override
public void encode(
BsonWriter writer,
Item item,
EncoderContext encoderContext
) {
Document document = this.converter.convert(item);
documentCodec.encode(writer, document, encoderContext);
}
/**
* Get the class that this Codec works with.
* @return Returns the class that this Codec works with.
*/
@Override
public Class<Item> getEncoderClass() {
return Item.class;
}
/**
* Decodes a Mongo/BSON document into an Item.
* @param reader The reader containing the Document.
* @param decoderContext The DecoderContext to use for decoding.
* @return Returns the decoded Item.
*/
@Override
public Item decode(BsonReader reader, DecoderContext decoderContext) {
Document document = documentCodec.decode(reader, decoderContext);
Item item = this.converter.convert(document);
return item;
}
/**
* Generates a new ObjectId for the passed Item (if absent).
* @param item The Item to work with.
* @return Returns the passed Item with a new id added if there
* was none.
*/
@Override
public Item generateIdIfAbsentFromDocument(Item item) {
if (!documentHasId(item)) {
item.setId(new ObjectId());
}
return item;
}
/**
* Returns whether or not the passed Item has an id.
* @param Item The Item that you want to check for
* the presence of an id.
* @return Returns whether or not the passed Item has an id.
*/
@Override
public boolean documentHasId(Item Item) {
return (Item.getName() != null);
}
/**
* Gets the id of the passed Item. If there is no id, it will
* throw an IllegalStateException (RuntimeException).
* @param Item The Item whose id you want to get.
* @return Returns the id of the passed Item as a BsonValue.
*/
@Override
public BsonValue getDocumentId(Item Item)
{
if (!documentHasId(Item)) {
throw new IllegalStateException("The document does not contain an _id");
}
return new BsonString(Item.getName());
}
}
用于编码/解码顺序的编解码器。
package com.example.mongo;
import com.example.model.Item;
import com.example.model.Order;
import com.mongodb.MongoClient;
import java.util.ArrayList;
import org.bson.BsonReader;
import org.bson.BsonString;
import org.bson.BsonValue;
import org.bson.BsonWriter;
import org.bson.Document;
import org.bson.codecs.Codec;
import org.bson.codecs.CollectibleCodec;
import org.bson.codecs.DecoderContext;
import org.bson.codecs.EncoderContext;
import org.bson.codecs.configuration.CodecRegistry;
import org.bson.types.ObjectId;
/**
* Mongo decoder for Orders.
*/
public class OrderCodec implements CollectibleCodec<Order> {
private final CodecRegistry registry;
private final Codec<Document> documentCodec;
private final ItemConverter itemConverter;
/**
* Default constructor.
*/
public OrderCodec() {
this.registry = MongoClient.getDefaultCodecRegistry();
this.documentCodec = this.registry.get(Document.class);
this.itemConverter = new ItemConverter();
}
/**
* Codec constructor.
* @param codec The existing codec to use.
*/
public OrderCodec(Codec<Document> codec) {
this.registry = MongoClient.getDefaultCodecRegistry();
this.documentCodec = codec;
this.itemConverter = new ItemConverter();
}
/**
* Registry constructor.
* @param registry The CodecRegistry to use.
*/
public OrderCodec(CodecRegistry registry) {
this.registry = registry;
this.documentCodec = this.registry.get(Document.class);
this.itemConverter = new ItemConverter();
}
/**
* Encode the passed Order into a Mongo/BSON document.
* @param writer The writer to use for encoding.
* @param order The Order to encode.
* @param encoderContext The EncoderContext to use for encoding.
*/
@Override
public void encode(
BsonWriter writer,
Order order,
EncoderContext encoderContext
) {
Document document = new Document();
document.put("_id", order.getId());
document.put("items", order.getItems());
documentCodec.encode(writer, document, encoderContext);
}
/**
* Get the class that this Codec works with.
* @return Returns the class that this Codec works with.
*/
@Override
public Class<Order> getEncoderClass() {
return Order.class;
}
/**
* Decodes a Mongo/BSON document into an Order.
* @param reader The reader containing the Document.
* @param decoderContext The DecoderContext to use for decoding.
* @return Returns the decoded Order.
*/
@Override
public Order decode(BsonReader reader, DecoderContext decoderContext) {
Document document = documentCodec.decode(reader, decoderContext);
Order order = new Order();
order.setId(document.getObjectId("_id"));
ArrayList<Document> docArr = (ArrayList) document.get("items");
for (Document doc : docArr) {
Item item = this.itemConverter.convert(doc);
order.addItem(item);
}
return order;
}
/**
* Generates a new ObjectId for the passed Order (if absent).
* @param order The Order to work with.
* @return Returns the passed Order with a new id added if there
* was none.
*/
@Override
public Order generateIdIfAbsentFromDocument(Order order) {
if (!documentHasId(order)) {
order.setId(new ObjectId());
}
return order;
}
/**
* Returns whether or not the passed Order has an id.
* @param order The Order that you want to check for
* the presence of an id.
* @return Returns whether or not the passed Order has an id.
*/
@Override
public boolean documentHasId(Order order) {
return (order.getId() != null);
}
/**
* Gets the id of the passed Order. If there is no id, it will
* throw an IllegalStateException (RuntimeException).
* @param order The Order whose id you want to get.
* @return Returns the id of the passed Order as a BsonValue.
*/
@Override
public BsonValue getDocumentId(Order order) {
if (!documentHasId(order)) {
throw new IllegalStateException("The document does not contain an _id");
}
return new BsonString(order.getId().toHexString());
}
}
应用程序的主类。在这里,我们注册编解码器并创建MongoClient。
package com.example.main;
import com.example.model.Item;
import com.example.model.Order;
import com.example.mongo.ItemCodec;
import com.example.mongo.OrderCodec;
import com.mongodb.MongoClient;
import com.mongodb.MongoClientOptions;
import com.mongodb.ServerAddress;
import org.bson.Document;
import org.bson.codecs.Codec;
import org.bson.codecs.configuration.CodecRegistries;
import org.bson.codecs.configuration.CodecRegistry;
/**
* Main class.
*/
public class Main {
/**
* Main function for the app.
* @param args the command line arguments
*/
public static void main(String[] args) {
CodecRegistry codecRegistry = MongoClient.getDefaultCodecRegistry();
Codec<Document> documentCodec = codecRegistry.get(Document.class);
Codec<Item> itemCodec = new ItemCodec(codecRegistry);
Codec<Order> orderCodec = new OrderCodec(codecRegistry);
codecRegistry = CodecRegistries.fromRegistries(
MongoClient.getDefaultCodecRegistry(),
CodecRegistries.fromCodecs(
documentCodec,
itemCodec,
orderCodec
)
);
MongoClientOptions options = MongoClientOptions.builder().codecRegistry(codecRegistry).build();
MongoClient mongo = new MongoClient(new ServerAddress("localhost", 27018), options);
// Your code here.
}
}
从那里你可以读/写订单和项目到/从Mongo。
本文向大家介绍汇编语言之寄存器详解,包括了汇编语言之寄存器详解的使用技巧和注意事项,需要的朋友参考一下 上图是cpu中三个组成部分:寄存器 运算器 控制器。其中寄存器是cpu中程序员用指令读取的唯一部件(调剂界面中的 寄存器窗口)。如果是16位cpu,就是处理,传输,暂时存储的数据长度都是16位。所以16位的cpu,寄存器也是16位。《汇编语言》这本书中使用的是16位寄存器位例子来讲的,所以下面的
Vim提供了许多寄存器。可以将这些寄存器用作多个剪贴板。使用多个文件时,此功能非常有用。在本章中,将讨论以下主题内容 - 复制寄存器中的文本 粘贴寄存器中的文本 列出可用的寄存器 寄存器类型 1. 复制寄存器中的文本 对于复制,可以使用普通的命令,即并将其存储在寄存器中,可以使用以下语法 - 例如,要复制寄存器中的文本,请使用以下命令 - 2. 粘贴寄存器中的文本 从寄存器粘贴文本 - 例如,下面
当前的Perl 5虚拟机是一台堆栈机器。 它通过将操作保持在堆栈上来传递操作之间的值。 操作将值加载到堆栈上,执行他们需要执行的操作并将结果放回堆栈。 这很容易使用,但速度很慢。 要将两个数字相加,您需要执行三次堆栈推送和两次堆栈弹出。 更糟糕的是,堆栈必须在运行时增长,这意味着在您不想分配内存时分配内存。 因此,Parrot将打破虚拟机的既定传统,并使用寄存器架构,更类似于真实硬件CPU的架构。
处理器操作主要涉及处理数据。 该数据可以存储在存储器中并从其上访问。 然而,从存储器读取数据和将数据存储到存储器中会降低处理器的速度,因为它涉及通过控制总线向存储器存储单元发送数据请求并通过相同通道获取数据的复杂过程。 为了加速处理器操作,处理器包括一些内部存储器存储位置,称为registers 。 寄存器存储数据元素以便处理而无需访问存储器。 处理器芯片内置有限数量的寄存器。 处理器寄存器 IA
80386中应用程序员感兴趣的有16个寄存器。如图2-5所示,这些寄存器被分成以下几个基本类型: 1.通用寄存器。这些32为通用寄存器主要用来数学和逻辑运算。 2.段寄存器。这些特殊目的寄存器允许系统软件设计者选择平坦模式或是段模式。这六个寄存器决定了,任何时候,哪段存储器可以被寻址。 3.状态和指令寄存器。这些特殊目的寄存器用于记录和改变80386处理器状态的一些特征。 2.3.1 通用寄存器