wildfly

Why is WildFly 10 + JSF 2.3 not working with Omnifaces 2.6.1?

送分小仙女□ 提交于 2020-01-13 04:55:06
问题 I've been trying to get an app up and running using jsf 2.3, primefaces 6 and omnifaces 2.6.1 on Wildfly 10. I have already splitted the jsf 2.3 (api and impl) and completed the set up for WildFly. The applications starts smoothly without omnifaces 2.6.1. But right when I add the omnifaces jar to the application classpath (/lib) this one fails at start up, giving the next exception: 13:21:52,024 SEVERE [javax.enterprise.resource.webcontainer.jsf.config] (ServerService Thread Pool -- 78)

Concurrent Timeout exception on starting Jboss Wildfly 9.02 server

ε祈祈猫儿з 提交于 2020-01-12 04:58:27
问题 I am new to jboss server. When I am trying to deploy .war file on server the following exception gets print on console: 6:38:04,388 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0348: Timeout after [300] seconds waiting for service container stability. Operation will roll back. Step that first updated the service container was 'add' at address '[ ("core-service" => "management"), ("management-interface" => "http-interface") ]' 16:38:05,642 INFO [org

The column name X was not found in this ResultSet - JPA

牧云@^-^@ 提交于 2020-01-07 07:44:09
问题 So I have this Company entity, I'm having an error every time I add a company. I'm using PostgreSQL for my database and I use double quote literals to map the columns of the table in pascalcase. Company entity: @Entity @XmlRootElement public class Company { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Column(name="\"Id\"") private Long id; @Column(name="\"Name\"") private String name; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String

jboss spring applicationContext load on start in web.xml

自作多情 提交于 2020-01-06 19:50:22
问题 I am using wildfly 8.2.0. I want to load spring-config.xml on start However, it`s unsuccessful. What am i doing wrong? This is my web.xml. <?xml version="1.0" encoding="UTF-8"?> http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1"> <display-name>BQP</display-name> <context-param> <param-name>contextConfigLocation</param-name> <param-value>src/main/resources/spring-config*.xml</param-value> </context-param> <listener> <listener-class> org.springframework.web.context

Wildfly 15.0.1.Final - Web Application Error

梦想与她 提交于 2020-01-06 08:20:07
问题 Wildfly 15.0.1 When I run a simple javaee 6 web application in wildfly 15.0.1 which was build under java 1.8 with netbeans 8.2 give the following error. But when I browse the url application works fine. java.net.MalformedURLException: For input string: "8080undefined" at java.net.URL.<init>(URL.java:627) at java.net.URL.<init>(URL.java:490) at java.net.URL.<init>(URL.java:439) at org.netbeans.modules.ant.browsetask.NbBrowse.execute(NbBrowse.java:92) at org.apache.tools.ant.UnknownElement

wildfly-maven-plugin deployment over SSL works once then “connection error”

岁酱吖の 提交于 2020-01-06 06:32:53
问题 I'm getting a weird behavior after securing Wildfly Admin console to use HTTPS, and configuring my pom.xml to deploy over https. (I tried on versions 8.2.1 and 10.1.0, standalone mode). I can only (re)deploy once successfully. After that, I get the error below, and I have to restart the server to (re)deploy again: Change in pom.xml: <plugin> <groupId>org.wildfly.plugins</groupId> <artifactId>wildfly-maven-plugin</artifactId> <version>1.0.2.Final</version> <configuration> <protocol>https

wildfly-maven-plugin deployment over SSL works once then “connection error”

心不动则不痛 提交于 2020-01-06 06:32:47
问题 I'm getting a weird behavior after securing Wildfly Admin console to use HTTPS, and configuring my pom.xml to deploy over https. (I tried on versions 8.2.1 and 10.1.0, standalone mode). I can only (re)deploy once successfully. After that, I get the error below, and I have to restart the server to (re)deploy again: Change in pom.xml: <plugin> <groupId>org.wildfly.plugins</groupId> <artifactId>wildfly-maven-plugin</artifactId> <version>1.0.2.Final</version> <configuration> <protocol>https

Netbeans does not know that Wildfly already started

柔情痞子 提交于 2020-01-06 04:31:32
问题 I´m using netbeans 11.2 with wildfly 15 application server. When i try to run my test applicaiton, after deployment I get this error: WildFly Application Server Start Failed. HTTP Connector port 8080 is already in use. The problem is, that when I hit the Run button, server starts, then application is deployed and then Netbeans tries to strat the server again, not knowing that it has already started. It can be seen in the Run output: Deploying on WildFly Application Server profile mode: false

How to run jsf mojarra 2.3 in wildfly 13 with netbeans 8.2?

南楼画角 提交于 2020-01-06 04:21:07
问题 I created a project in netbeans and I add jboss_jsf-api_2.3 and after I created my faces_config.xml. But I have a error: One or more services were unable to start due to one or more indirect dependencies not being available faces config is: <faces-config xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_3.xsd" version="2.3"> </faces-config>

Keycloak user federator

冷暖自知 提交于 2020-01-05 10:31:59
问题 I'm trying to put my new custom Federator in Keycloak so I've compiled my jar filed created using mvn clean install into standalone/configuration/providers following this guide. I then restarted the Wildfly 8 server but it doesn't seem to register my customer Federation provider. Is there a reason why this isn't working? 回答1: Add a file META-INF/services/org.keycloak.models.UserFederationProviderFactory containing the full classname of your custom provider factory . For example be.abc.def