netbeans-8

The JavaEE 8 Tutorial, deploy failed on hello1 project

匆匆过客 提交于 2020-01-02 02:55:27
问题 I'm try to learn Java EE 8, I have followed the official guide at https://javaee.github.io/tutorial/ but I have this problem: --- cargo-maven2-plugin:1.4.4:redeploy (deploy) @ hello1 --- [DeployerRedeployMojo] Resolved container artifact org.codehaus.cargo:cargo-core-container-glassfish:jar:1.4.4 for container glassfish5x ------------------------------------------------------------------------ BUILD FAILURE ------------------------------------------------------------------------ Total time: 4

unable to open web service tester page with jdk8 and netbeans 8

梦想的初衷 提交于 2020-01-01 15:09:09
问题 I wrote a simple web service program but I can not test it on glassfish 4.0 web server . When I Test Web service I see this message : Make sure the service has been deployed successfully, and the server is running. I can see it in list of deployed web services on glassfish web server . and I add this file to \jdk1.8.0\jre\lib to fix the problem. jaxp.properties javax.xml.accessExternalSchema = All But it doesn't work Also I see this error in url of tester page : lineNumber: 52; columnNumber:

unable to open web service tester page with jdk8 and netbeans 8

。_饼干妹妹 提交于 2020-01-01 15:07:33
问题 I wrote a simple web service program but I can not test it on glassfish 4.0 web server . When I Test Web service I see this message : Make sure the service has been deployed successfully, and the server is running. I can see it in list of deployed web services on glassfish web server . and I add this file to \jdk1.8.0\jre\lib to fix the problem. jaxp.properties javax.xml.accessExternalSchema = All But it doesn't work Also I see this error in url of tester page : lineNumber: 52; columnNumber:

Dark theme in Netbeans 7 or 8

怎甘沉沦 提交于 2019-12-29 10:05:58
问题 Is there a way to have a dark theme in Netbeans? 回答1: Darcula UPDATE 2016-02: NetBeans 8 now has a Darcula plugin, better and more complete than the alternatives discussed in old version of this Answer. The attractive and productive Darcula theme in JetBrains IntelliJ is now available in NetBeans 8.0 & 8.1! The Real Thing This plugin provides the real Darcula, not an imitation. Konstantin Bulenkov of the JetBrains company made the Darcula look-and-feel open-source. This NetBeans plugin

Netbeans installer issue with jdk 11

南楼画角 提交于 2019-12-29 09:11:51
问题 I downloaded and installed jdk 11 and am now trying to install netbeans 8.2. But i get an error which states "JAVA SE was not found on this computer.Make sure JDK is properly installed and run installer again. You can specify valid JDK location using --javahome installer argument." I created a JAVA_HOME variable and set the value to "C:\Program Files\Java\jdk-11.0.1\bin" and set the same value for PATH variable as well. How do i fix this? 回答1: You face a couple of issues: NetBeans 8.2

Netbeans installer issue with jdk 11

↘锁芯ラ 提交于 2019-12-29 09:10:37
问题 I downloaded and installed jdk 11 and am now trying to install netbeans 8.2. But i get an error which states "JAVA SE was not found on this computer.Make sure JDK is properly installed and run installer again. You can specify valid JDK location using --javahome installer argument." I created a JAVA_HOME variable and set the value to "C:\Program Files\Java\jdk-11.0.1\bin" and set the same value for PATH variable as well. How do i fix this? 回答1: You face a couple of issues: NetBeans 8.2

Using the WildFly application server with NetBeans IDE

丶灬走出姿态 提交于 2019-12-29 01:39:30
问题 I was accustomed to using GlassFish server all the times. I'm migrating a Java EE application from GlassFish (4.0) to WildFly 8.1.0 final. I tried using WildFly 8.1.0 final on NetBeans 8.0 using this plugin for the server, since there was no built-in plugin for the server. Unlike GlassFish, the application is however, not deployed on saving project data even though the deploy on save option on the IDE is enabled. The application leads to very strange/unknown/unusual problems. For example,

Erroneous “Unable to resolve identifier” in Netbeans

空扰寡人 提交于 2019-12-29 00:41:35
问题 My program compiles fine, but Netbeans tells me "Unable to resolve identifier to_string." I tried everything in "Netbeans 7.2 shows "Unable to resolve identifier" , although build is successful" and I set the "C++ standard" to "C++11" in the code assistance options. This is the only function giving this problem so far. It is however also the first C++11 feature I am using, which leads me to believe it has something to do with Netbeans not understanding that I am using C++11, although I

How can I add custom JComponent in a single JTable cell?

元气小坏坏 提交于 2019-12-25 08:16:17
问题 I want to make a JTable , where one single cell (not all rows of a column) will contain a JComponent like JdatePicker or JComboBox . I have written this code DefaultTableModel dm; dm = new DefaultTableModel() { public boolean isCellEditable(int rowIndex, int columnIndex) { return !(columnIndex == 0); //make 0th column non-editable } }; Object [] columnHeaders=new Object[]{"Field", "Value"}; Object [][] data=new Object[][]{{"ID",""},{"Reg Year",""},{"Reg Date", ""}} ; regFormTable.setModel(dm)

Netbeans, Gradle and Jogl, crash

允我心安 提交于 2019-12-24 17:14:37
问题 I am trying to learn and implement Gradle in one of my project. I installed the Netbeans Gradle plugin and after looking a couple of tutorials (and running successfully a couple of test projects), I tried the big step. I successfully solved all the Jogl dependencies modifying the build.gradle script as follow: apply plugin: 'java' sourceCompatibility = '1.8' [compileJava, compileTestJava]*.options*.encoding = 'UTF-8' // NetBeans will automatically add "run" and "debug" tasks relying on the //