Questions tagged [jboss7.x]

Version 7 of the JBoss Application Server

JBoss Application Server 7 is a Java EE 6 implementation. Read more about JBoss AS 7 here.

3567 questions
11
votes
8 answers

Spring Java Config vs Jboss 7

I`m trying to run a simple application with spring java based configuration on jboss, but no success. This application works fine both on jetty and tomcat. The jboss log looks good, since it shows me some successful mappings etc, but I got 404…
Thiago Pereira
  • 1,724
  • 1
  • 17
  • 31
11
votes
3 answers

jboss 7 standalon-full.xml as config

I want to start JBoss AS v7 and set standalone-full.xml as default config. In my standalone.conf I put this line: JAVA_OPTS="$JAVA_OPTS -Djboss.server.default.config=standalone-full.xml". But when I start server, it take standalone.xml as config. My…
Yuriy Mayorov
  • 961
  • 4
  • 15
  • 32
11
votes
2 answers

JBoss Deploying non-JDBC-compliant driver class com.mysql.jdbc.Driver

Good evening all, does any one know anything about this error JBAS010404: Deploying non-JDBC-compliant driver class com.mysql.jdbc.Driver (version 5.1) it always appears when i start deploying mysql jar and my application fails to start on the…
Eslam Hamdy
  • 7,126
  • 27
  • 105
  • 165
11
votes
2 answers

Could not connect to remote://localhost:9999. The connection timed out Jboss 7.1.1 Final

I am deploying builds to local and remote Jboss AS 7.1.1 Final at port 9999. Maven uses jboss plugin 'jboss-as-maven-plugin:7.1.1.Final' to manage builds to servers. I have confirmed that server is up and running and port is accessible at 9999. But…
Manish Devraj
  • 701
  • 3
  • 11
  • 27
11
votes
1 answer

system-properties In standalone-full.xml

Jboss version: jboss-as-7.1.0.Final can we add In standalone-full.xml? I am getting below error: 20:54:35,726 INFO [org.jboss.modules] JBoss Modules version…
Vicky
  • 319
  • 3
  • 6
  • 16
11
votes
2 answers

How can I make Jenkins deploy my project to JBoss EAP(AS7)

How can I make Jenkins deploy my project to JBoss EAP(AS7)? I see that Jenkins can deploy a project to JBoss 5.x if it builds ok but how can I make it deploy to AS7 or EAP if it builds ok? Can someone please tell me if this can be done.
techsjs2012
  • 1,737
  • 5
  • 25
  • 57
10
votes
3 answers

JBoss AS 7 with two webapps on different http ports?

To replace a legacy service I am interested in having two different webapps on two different HTTP port numbers, e.g., 8080 -> webapp1 (browser service), 8200 -> webapp2 (REST, new version uses RESTEasy). Each will be the "root context" on that port…
idarwin
  • 607
  • 4
  • 19
10
votes
3 answers

JBoss 7.0.1 running without jsessionid in the URL is not working

Because of some security reasons I deceided to disable session tracking by jsessionid in URL. Before I changed my web.xml to the one below, I had on the first time I visited the page a jsessionid in the url, after clicking the first link, it never…
Joergi
  • 1,527
  • 3
  • 39
  • 82
10
votes
2 answers

JBoss 7: how to change a WAR context root

I have an application that is to be deployed in a WAR file (app.war). After deployment it is available from http://:8080/app I would like to have it being made available as something like http://:8080/secret/app I searched the documentation and…
Aikanaro
  • 151
  • 1
  • 3
  • 10
10
votes
2 answers

How to configure static resources in jBoss AS 7

I'd like to upload images to the server, store them in file system (outside server) and then display them on my JSF page. I'd like to find something like this:
nikagra
  • 835
  • 2
  • 9
  • 23
10
votes
2 answers

Authentication without Role in web.xml in JBoss AS 7

For a RESTful enterprise application I need all calls to be authenticated, but I cannot provide a common group/rolt that all users of the system have. I authenticate and authorize over LDAP (which should not make a difference for this issue). If I…
Frank
  • 423
  • 1
  • 7
  • 13
10
votes
2 answers

Do I need DataSource in JPA Hibernate project?

I am preparing some application with usage of JPA 2.0, Hibernate as provider, MySQL 5 as database, which will be deployed on JBoss AS 7.0.2.I have already configured some basics in persistence.xml and I came into some kind of trouble. I have…
rivasket
  • 377
  • 2
  • 6
  • 18
10
votes
1 answer

Setting up SSL in JBoss AS 7

I am attempting to get SSL set up in JBoss Application Server 7. I want http and https so I added: I created a jsse element as directed by…
Mark Sholund
  • 1,273
  • 2
  • 18
  • 32
10
votes
4 answers

Generate an xml file with all dependencies with maven

I need to generate module.xml file for JBoss7 for a maven project which has a lot of jar-dependencies. What is the easiest way to do it? The file looks like:
kan
  • 28,279
  • 7
  • 71
  • 101
10
votes
2 answers

"Standardized" way of handling the lifecycle of a Java EE application

When developing an Java EE Application, I often came across the 'problem' to do stuff when the application is started, stopped etc. Now for Weblogic for example, there is a mechanism for that (the application life-cycle listener). But if you want to…
DXTR66
  • 563
  • 5
  • 17