Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Empfohlene Antworten

Veröffentlicht

Hallo,

ich habe einen Servlet. Der Servlet initialisiert einen Objekt (Device[]) in seine init()-Methode:

Servlet: Simulator.java


 public class Simulator extends javax.servlet.http.HttpServlet implements javax.servlet.Servlet {


	 public Device[] devices;

	 public DeviceManager deviceManager;



	public void init(ServletConfig config) throws ServletException {

		super.init();


		deviceManager = new DeviceManager();

		devices = new Device[4];


		for(int i=0; i<devices.length; i++){


			devices[i] = new Device();


			devices[i].setID("1");

			devices[i].setName("dummy");

			devices[i].setInfo("Test");

		}


	}


	public Device[] getDevises(){

		return this.devices;

	}

}

Also das heißt das wenn der Tomcat gestartet wird ist der Objekt Device[] gefühlt.

Wie kann man aus eine JSP-Seite auf der Initialisirte Objekt zugreifen ???

Ich habe es schon.

Wenn es jemand interesiert...

in web.xml [somit wird der Servlet beim Start von Tomcat direkt geladen]

		

<servlet>

		<display-name>Simulator</display-name>

		<servlet-name>Simulator</servlet-name>

		<servlet-class>org.test.Simulator</servlet-class>

          <load-on-startup>1</load-on-startup>

</servlet>

Dann in meinem Servlet also Simulator.java

public void init(ServletConfig config) throws ServletException {

		super.init();


         .......

        config.getServletContext().setAttribute("device", devices[0]);


}

und schliesslich in der index.jsp

<%

	Device dev = (Device) application.getAttribute("device");

%>


<%=dev%><br>

ALSO ES IST MÖGLICH! :)

Erstelle ein Konto oder melde dich an, um einen Kommentar zu schreiben.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.