Translation of "JavaBean" in German
We couldn’t find this entry. Showing approximate results. Check your spelling or suggest adding this term to the dictionary.
Separate JavaBean with full source.
The specific difference listed was that a servlet would intercept the request, place the content to render into a request attribute (typically represented by a JavaBean), then call a JSP to render the content in the desired output format.
Der aufgeführte Unterschied war, dass ein Servlet die Anfrage abfangen, den darzustellenden Inhalt in einen Parameter (üblicherweise ein JavaBean) packen, und schließlich eine JSP aufrufen würde, um den Inhalt im gewünschten Ausgabeformat darzustellen.
It then places the content in the request (commonly in the form of a JavaBean or POJO) and decides which view it will pass the request to.
Dann legt er diesen Inhalt in der Anfrage ab (üblicherweise als JavaBean oder POJO) und entscheidet, welcher View er die Anfrage überreicht.
The data type of the parameters and the return value must be a Java primitive type or a JavaBean object.
Der Datentyp der Parameter und der Rückgabewert müssen vom primitiven Typ (Java) oder ein JavaBean-Objekt sein.
Use the Object class drop-down menu to select the JavaBean class that represents the administered object.
Mit dem Dropdown-Menü Objektklasse wählen Sie die JavaBean-Klasse, die das verwaltete Objekt darstellt.
In the message flow from the sender it is called by the adapter (or an adapter Enterprise JavaBean).
The module processor controls the message flow between the messaging service and the JCA adapters on the J2EE Enterprise JavaBean application level.
Der Modul-Prozessor kontrolliert den Message-Fluss zwischen dem Messaging-Service und den JCA-Adaptern auf J2EE Enterprise JavaBean-Anwendungsebene.
The data type of the parameters and the return value must be a Java primitive type, Byte[] (and/or byte[]), a DataSource object, or a JavaBean object.
Der Datentyp der Parameter und das Ergebnis müssen ein primitiver Typ (Java), Byte[] (und/oder byte[]), ein DataSource-Objekt oder ein JavaBean-Objekt sein.
Note: You can use the direct reference method to get or set values in some classes that have getProperty and setProperty methods but do not conform fully to the JavaBean pattern.
Hinweis: Sie können mit der direkten Verweismethode in einigen Klassen Werte abrufen oder definieren, in denen die Methoden getProperty und setProperty verfügbar sind, die aber nicht vollständig mit der JavaBean-Spezifikation übereinstimmen.
Apache BVal, or Apache Bean Validation, is a Java toolkit that provides functions and methods that allow a developer to validate JavaBean data and see if they're compliant with the JSR303 standard.
Apache BVAL oder Apache Bean Validation ist eine Java-Toolkit, das Funktionen und Methoden bietet, die ein Entwickler erlauben JavaBean Daten zu überprüfen und sehen, ob sie mit der JSR303-Standard kompatibel sind.
For example, if the myFishTank class is a JavaBean, the following code returns the results of calling the getTotalFish() method on the myFish object
Wenn beispielsweise die Klasse myFishTank ein JavaBean ist, gibt der folgende Code die Aufrufergebnisse der Methode getTotalFish() für das Objekt myFish zurück
Does not make the properties public, but is a JavaBean that provides public getter and setter methods of the form getPropertyName() and setPropertyName(value).
Das Objekt legt die Eigenschaften nicht als öffentliche Eigenschaften fest, ist aber ein JavaBean, das öffentliche getter- und setter-Methoden in der Form getPropertyName() und setPropertyName(Wert) bereitstellt.
There two ways to bind configuration data to JavaBean in Spring Boot: by using type safe binding, via @ConfigurationProperties and by using SpEL expressions via @Value.
In Spring Boot gibt es zwei Möglichkeiten, Konfigurationswerte an JavaBeans zu binden: mit Hilfe des typsicheren Bindings durch @ConfigurationProperties und durch die Verwendung von SpEL-Ausdrücken zusammen mit @Value.