tomcat

distribuire l'applicazione java su aws

Ho un'applicazione web in esecuzione su tomcat7 e MySQL, ora voglio distribuirla su aws.. L'applicazione ha bisogno di scriv ... cos'altro per File R/N ? Devo cambiare il mio codice in qualche modo per farlo funzionare su aws? Grazie in anticipo, Lori

java tomcat: solo un tipo può essere importato. com.a. B risolve in un pacchetto

Ho la seguente struttura del progetto: ./WEB-INF/web.xml ./WEB-INF/lib ./WEB-INF/classes/com/a/B.class ./index.jsp Quando ... me> <servlet-class>com.a.B</servlet-class> </servlet> </web-app> Qualche idea ? Grazie!

installazione di tomcat e java su centos utilizzando bash [chiuso]

Ho un problema ad avviare correttamente il servizio tomcat dopo averlo installato. sto usando centos 7 bash 4. Se l'utente ... tomcatSvc/temp org.apache.catalina.startup.Bootstrap start app 23441 23408 0 09:16 pts/0 00:00:00 grep tomcatSvc

monitoraggio delle prestazioni di tomcat in JavaMelody e ab

Sono nuovo di JavaMelody e benchmark. Sto usando JavaMelody per monitorare la mia Applicazione Jersey in tomcat seguente htt ... enza nel test ab? O questo significa che tomcat non può gestire tutte le richieste (ma solo 17/200 usato in tomcat)? Grazie.

Java Websocket chat su mochahost vps 404 errore

Ho appena acquistato un vps online e ho installato apache tomcat 8.0.20 su di esso. Il server è attivo e funzionante. La mia ... amente su localhost. Tuttavia, mi chiedo se ho bisogno di aggiungere anche i numeri di porta all'indirizzo del server online.

Java Webservice colpire proxy invece di destinazione su Apache Tomcat

Ho un servizio web java in esecuzione su Apache Tomcat 7.0.39. Riceve un messaggio da un altro server sulla stessa rete, quin ... utilizzare il proxy invece di una connessione diretta. C'è un'impostazione da qualche parte per disattivare l'uso del proxy?

Come avviare automaticamente un file exe dopo il download in java

Ho un requisito come Scaricare un file exe ,una volta scaricato eseguire lo stesso file exe. Ambiente è un'applicazione web J ... ire l'installazione. Ha bisogno di una soluzione immediata .Sono rimasto bloccato qui piu ' di un mese. Grazie in anticipo.

Impossibile connettere Java a CONNX: java.sql.SQLException: Connessione rifiutata: connessione

Sto cercando di collegare un programma basato su Java in esecuzione tramite Tomcat a un database CONNX, ma sto ricevendo l'er ... java:620) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) at java.lang.Thread.run(Unknown Source)

utilizzo di Websockets con Java Tomcat su Microsoft Azure Web-App-Service (non VM)

Qualcuno è riuscito a eseguire Websockets su Microsoft Azure WebApp-Service usando Tomcat? Ho provato a eseguire Tomcat 7 cha ... ilato per. In aggiunta a ciò devi fare in modo che i tuoi ServerEndpoints vengano caricati correttamente come descritto qui !

La sicurezza JAAS nel server di applicazioni Web basato su Java EE dipende?

Sono nuovo allo sviluppo di Java EE, tuttavia sto andando bene in esso, Sono un po ' confuso con la parte di sicurezza della ... ricato il file war su un server tomcat, sarà ancora protetto? Qualsiasi aiuto/guida sarebbe estremamente apprezzato! Grazie!

SAP Hybris si spegne da solo

Sono nuovo in un progetto sap hybris e da qualche settimana abbiamo il problema che la nostra hybris si spegne da sola in pro ... o che una hybris si chiude giù da solo. Ho già lavorato in altri 4 grandi progetti, non ho mai avuto questo tipo di problema.

Messa a punto JVM sul contenitore (Java 8)

Abbiamo recentemente spostato il nostro stack di applicazioni in ECS-EC2 da EC2 e il nostro piano è quello di spostare lo sta ... r (Java 8)? Qualsiasi aiuto sarà apprezzato. PS : Tomcat stampa la configurazione JAVA_OPTS all'avvio del file catalina.logs.

Hosting for a Java application: help me figure it out

I wrote a simple Java server on sockets. I run it in Eclipse - everything is fine, works, interacts with the client. Now I wa ... this difficult topic, maybe you can recommend reading something? And then I look: Jboss, Tomcat... Is this even on my topic?

Hosting Java Servlet on Apache Tomcat

The servlet uses JDBC. To make the servlet work, put the jar file with the driver in the folder WEB-INF/lib/. When running t ... c void main(String[] args) { Main m = Main.getInstance(); m.getItems().forEach(System.out::println) } }

Installing the Tomcat plugin in Eclipse

Good time of day. Downloaded and installed Tomcat 7.0.39 from the official website version 32-bit/64-bit Windows Service Inst ... plugins. I downloaded Tomcat just as a zip archive, but there is also no folder with the plugin. How do I install the plugin?

Java + Hibernate Web application structure without Spring

I'm trying to figure out a java web application. Using Intellij IDEA First, I wrote a small console application that acces ... .buildSessionFactory(); } public static SessionFactory getSessionFactory() { return sessionFactory; } }

Deploy a JAVA WEB application to the Internet

I wrote a web application (website) using the SPRING IoC, MVC, Security, Hibernate, and MySQL database frameworks. I run it locally from under Tomcat8 in Intell IDEA. How do I put it in the net so that it functions as an independent site?

Image storage in the FS, Web application development, java

I make a web application, store the name of the Product image file in the product database, and store the images themselves i ... th to the images should be specified in web.xml, but it is not displayed in jsp <img src="D://images/${product.img}">.

Create a Java web application connection on Tomcat with MySQL

There is a simple Java application for tests on joining a MySQL database. What I did: In web.xml I added this: <?x ... ter.java:53) I've already tried everything I can. I reviewed all the documentation. I don't understand why it doesn't work?

JavaEE out.println cannot resolve method

Started learning JavaEE. The project is built in IntelliJ IDEA on Maven, TomCat 9. Ideshka notes that it does not find the ... %> </p> <p> <% for (int i =0; i < 10; i++) { out.println(i); } %> </p>