[jira] [Commented] (NETBEANS-5961) System.out.print buffered to Output Window

2021-08-28 Thread David Green (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5961?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406311#comment-17406311
 ] 

David Green commented on NETBEANS-5961:
---

That is what we are doing at present.  I don't think it is a show stopper
for 12.5.  I do think it should be considered for fixing.

I may have not placed the right priority on the Jira ticket.

On Sat, Aug 28, 2021 at 4:05 PM Geertjan Wielenga (Jira) 



> System.out.print buffered to Output Window
> --
>
> Key: NETBEANS-5961
> URL: https://issues.apache.org/jira/browse/NETBEANS-5961
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.4, 12.5
> Environment: JDK 15
> macOS 11.5.2
>Reporter: David Green
>Priority: Major
>
> In NetBeans 12.4 and verified to also behave this way on NetBeans 12.5-beta2, 
> System.out.print is buffered such that it does not show up in the NetBeans 
> Output window until a System.out.println (or probably things like program 
> end, and some buffer full scenario).
>  
> Example code: 
>  
> {{package dgreen.printbug;}}
> {{import java.util.Scanner;}}
> {{/**}}
> {{ * Demo program showing that System.out.print's are not pushed to output 
> window until a}}
> {{ * System.out.println}}
> {{ */}}
> {{public class NewMain {}}
> {{  public static void main(String[] args) {}}
> {{    Scanner sc = new Scanner(System.in);}}
> {{    System.out.print("Enter your name: ");}}
> {{    System.out.flush(); // should not be necessary but does not work 
> either}}
> {{    String name = sc.nextLine();}}
> {{    System.out.println("Hi " + name);}}
> {{  }}}
> {{}}}
>  
> —-
> {{Running it after Clean & Build (or before)}}
> {{ }}
> {{--- exec-maven-plugin:3.0.0:exec (default-cli) @ printbug ---}}
> {{dave}}
> {{Enter your name: Hi dave}}
> 
> BUILD SUCCESS
>  
> where "dave" was typed in without the benefit of seeing the prompt.
>  
> This works fine when run from true command line either inside a NetBeans 
> Terminal Window or the real command line.
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5961) System.out.print buffered to Output Window

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5961?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406309#comment-17406309
 ] 

Geertjan Wielenga commented on NETBEANS-5961:
-

Is it a very big problem for you to use 'println' instead of 'print'?

> System.out.print buffered to Output Window
> --
>
> Key: NETBEANS-5961
> URL: https://issues.apache.org/jira/browse/NETBEANS-5961
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.4, 12.5
> Environment: JDK 15
> macOS 11.5.2
>Reporter: David Green
>Priority: Major
>
> In NetBeans 12.4 and verified to also behave this way on NetBeans 12.5-beta2, 
> System.out.print is buffered such that it does not show up in the NetBeans 
> Output window until a System.out.println (or probably things like program 
> end, and some buffer full scenario).
>  
> Example code: 
>  
> {{package dgreen.printbug;}}
> {{import java.util.Scanner;}}
> {{/**}}
> {{ * Demo program showing that System.out.print's are not pushed to output 
> window until a}}
> {{ * System.out.println}}
> {{ */}}
> {{public class NewMain {}}
> {{  public static void main(String[] args) {}}
> {{    Scanner sc = new Scanner(System.in);}}
> {{    System.out.print("Enter your name: ");}}
> {{    System.out.flush(); // should not be necessary but does not work 
> either}}
> {{    String name = sc.nextLine();}}
> {{    System.out.println("Hi " + name);}}
> {{  }}}
> {{}}}
>  
> —-
> {{Running it after Clean & Build (or before)}}
> {{ }}
> {{--- exec-maven-plugin:3.0.0:exec (default-cli) @ printbug ---}}
> {{dave}}
> {{Enter your name: Hi dave}}
> 
> BUILD SUCCESS
>  
> where "dave" was typed in without the benefit of seeing the prompt.
>  
> This works fine when run from true command line either inside a NetBeans 
> Terminal Window or the real command line.
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5961) System.out.print buffered to Output Window

2021-08-28 Thread David Green (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5961?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406308#comment-17406308
 ] 

David Green commented on NETBEANS-5961:
---

No joy.  Same behavior.

On Sat, Aug 28, 2021 at 3:57 PM Geertjan Wielenga (Jira) 



> System.out.print buffered to Output Window
> --
>
> Key: NETBEANS-5961
> URL: https://issues.apache.org/jira/browse/NETBEANS-5961
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.4, 12.5
> Environment: JDK 15
> macOS 11.5.2
>Reporter: David Green
>Priority: Major
>
> In NetBeans 12.4 and verified to also behave this way on NetBeans 12.5-beta2, 
> System.out.print is buffered such that it does not show up in the NetBeans 
> Output window until a System.out.println (or probably things like program 
> end, and some buffer full scenario).
>  
> Example code: 
>  
> {{package dgreen.printbug;}}
> {{import java.util.Scanner;}}
> {{/**}}
> {{ * Demo program showing that System.out.print's are not pushed to output 
> window until a}}
> {{ * System.out.println}}
> {{ */}}
> {{public class NewMain {}}
> {{  public static void main(String[] args) {}}
> {{    Scanner sc = new Scanner(System.in);}}
> {{    System.out.print("Enter your name: ");}}
> {{    System.out.flush(); // should not be necessary but does not work 
> either}}
> {{    String name = sc.nextLine();}}
> {{    System.out.println("Hi " + name);}}
> {{  }}}
> {{}}}
>  
> —-
> {{Running it after Clean & Build (or before)}}
> {{ }}
> {{--- exec-maven-plugin:3.0.0:exec (default-cli) @ printbug ---}}
> {{dave}}
> {{Enter your name: Hi dave}}
> 
> BUILD SUCCESS
>  
> where "dave" was typed in without the benefit of seeing the prompt.
>  
> This works fine when run from true command line either inside a NetBeans 
> Terminal Window or the real command line.
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5961) System.out.print buffered to Output Window

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5961?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406305#comment-17406305
 ] 

Geertjan Wielenga commented on NETBEANS-5961:
-

"I do have Apache Maven 3.8.1 version installed through brew on the command 
line path."

Can you go to the Options window (Java | Maven | Execution and then browse in 
Maven Home) and set that one to be used in NetBeans too?

> System.out.print buffered to Output Window
> --
>
> Key: NETBEANS-5961
> URL: https://issues.apache.org/jira/browse/NETBEANS-5961
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.4, 12.5
> Environment: JDK 15
> macOS 11.5.2
>Reporter: David Green
>Priority: Major
>
> In NetBeans 12.4 and verified to also behave this way on NetBeans 12.5-beta2, 
> System.out.print is buffered such that it does not show up in the NetBeans 
> Output window until a System.out.println (or probably things like program 
> end, and some buffer full scenario).
>  
> Example code: 
>  
> {{package dgreen.printbug;}}
> {{import java.util.Scanner;}}
> {{/**}}
> {{ * Demo program showing that System.out.print's are not pushed to output 
> window until a}}
> {{ * System.out.println}}
> {{ */}}
> {{public class NewMain {}}
> {{  public static void main(String[] args) {}}
> {{    Scanner sc = new Scanner(System.in);}}
> {{    System.out.print("Enter your name: ");}}
> {{    System.out.flush(); // should not be necessary but does not work 
> either}}
> {{    String name = sc.nextLine();}}
> {{    System.out.println("Hi " + name);}}
> {{  }}}
> {{}}}
>  
> —-
> {{Running it after Clean & Build (or before)}}
> {{ }}
> {{--- exec-maven-plugin:3.0.0:exec (default-cli) @ printbug ---}}
> {{dave}}
> {{Enter your name: Hi dave}}
> 
> BUILD SUCCESS
>  
> where "dave" was typed in without the benefit of seeing the prompt.
>  
> This works fine when run from true command line either inside a NetBeans 
> Terminal Window or the real command line.
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406304#comment-17406304
 ] 

Geertjan Wielenga commented on NETBEANS-5960:
-

PS: Here's my LinkedIn: https://www.linkedin.com/in/geertjanwielenga/ and my 
e-mail address is geert...@apache.org, drop me a mail or connect via LinkedIn 
and we'll set up a Zoom call together (all for free and also remember you've 
paid nothing at all -- and contributed nothing back at all -- to NetBeans 
itself).

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406303#comment-17406303
 ] 

Geertjan Wielenga commented on NETBEANS-5960:
-

I'd love to help -- to such an extent that I'm helping you all of my Saturday 
evening. :-)

So far, I'm not able to reproduce the problem at all, tried very hard though.

I'd like to continue trying, maybe we can do a Zoom call so that I can see what 
you're doing and help you.

And all of this for free and as a volunteer on a free and open source project. 
Welcome to Apache NetBeans. :-)

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5961) System.out.print buffered to Output Window

2021-08-28 Thread David Green (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5961?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406302#comment-17406302
 ] 

David Green commented on NETBEANS-5961:
---

Could be but the entire output window is shown below.

It is a new project printbug2 because I made a change to the original one
for another discussion and so I have rebuilt it to have an "as made by
NetBeans 12.4" version.

Note that the commands being output suggests that the maven in use is
packaged with NetBeans.  It seems to be *Apache Maven 3.6.3. *I do have
Apache Maven 3.8.1 version installed through brew on the command line path.

(The other reply in dev mailing list suggested using exec:java instead of
exec:exec which does seem to work but it is not the default behavior and I
don't yet understand if there are any negative implications).  I am trying
to keep it straight forward for beginning students.)

—-—-

cd /Users/dgreen/NetBeansProjects/printbug2;
JAVA_HOME=/Library/Java/JavaVirtualMachines/zulu-15.jdk/Contents/Home
"/Applications/NetBeans/Apache NetBeans
12.4.app/Contents/Resources/NetBeans/netbeans/java/maven/bin/mvn"
-Dexec.vmArgs= "-Dexec.args=${exec.vmArgs} -classpath %classpath
${exec.mainClass} ${exec.appArgs}" -Dexec.appArgs=
-Dexec.mainClass=dgreen.printbug2.NewMain
-Dexec.executable=/Library/Java/JavaVirtualMachines/zulu-15.jdk/Contents/Home/bin/java
process-classes org.codehaus.mojo:exec-maven-plugin:3.0.0:exec
Scanning for projects...

--< edu.uab.dgreen:printbug2 >--
Building printbug2 1.0-SNAPSHOT
[ jar ]-

--- maven-resources-plugin:2.6:resources (default-resources) @ printbug2 ---
Using 'UTF-8' encoding to copy filtered resources.
skip non existing resourceDirectory
/Users/dgreen/NetBeansProjects/printbug2/src/main/resources

--- maven-compiler-plugin:3.1:compile (default-compile) @ printbug2 ---
Changes detected - recompiling the module!
Compiling 1 source file to
/Users/dgreen/NetBeansProjects/printbug2/target/classes

--- exec-maven-plugin:3.0.0:exec (default-cli) @ printbug2 ---

Enter your name: Hi

BUILD SUCCESS

Total time:  12.457 s
Finished at: 2021-08-28T15:23:25-05:00


On Sat, Aug 28, 2021 at 3:00 PM Geertjan Wielenga (Jira) 



> System.out.print buffered to Output Window
> --
>
> Key: NETBEANS-5961
> URL: https://issues.apache.org/jira/browse/NETBEANS-5961
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.4, 12.5
> Environment: JDK 15
> macOS 11.5.2
>Reporter: David Green
>Priority: Major
>
> In NetBeans 12.4 and verified to also behave this way on NetBeans 12.5-beta2, 
> System.out.print is buffered such that it does not show up in the NetBeans 
> Output window until a System.out.println (or probably things like program 
> end, and some buffer full scenario).
>  
> Example code: 
>  
> {{package dgreen.printbug;}}
> {{import java.util.Scanner;}}
> {{/**}}
> {{ * Demo program showing that System.out.print's are not pushed to output 
> window until a}}
> {{ * System.out.println}}
> {{ */}}
> {{public class NewMain {}}
> {{  public static void main(String[] args) {}}
> {{    Scanner sc = new Scanner(System.in);}}
> {{    System.out.print("Enter your name: ");}}
> {{    System.out.flush(); // should not be necessary but does not work 
> either}}
> {{    String name = sc.nextLine();}}
> {{    System.out.println("Hi " + name);}}
> {{  }}}
> {{}}}
>  
> —-
> {{Running it after Clean & Build (or before)}}
> {{ }}
> {{--- exec-maven-plugin:3.0.0:exec (default-cli) @ printbug ---}}
> {{dave}}
> {{Enter your name: Hi dave}}
> 
> BUILD SUCCESS
>  
> where "dave" was typed in without the benefit of seeing the prompt.
>  
> This works fine when run from true command line either inside a NetBeans 
> Terminal Window or the real command line.
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Egor (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406300#comment-17406300
 ] 

Egor commented on NETBEANS-5960:


I followed the steps you provided exactly and the result I got is the evidence 
of bug in your IDE. I've given you more than enough info to understand the 
essence of the problem, but instead of real support you are just pretending to 
help and playing dumb. You just don't want to admit that there's a bug, because 
otherwise you will have to fix it. With this kind of attitude I think I'd 
better switch to a different IDE and tell everyone that your IDE is not worth 
dealing with.

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5961) System.out.print buffered to Output Window

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5961?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406295#comment-17406295
 ] 

Geertjan Wielenga commented on NETBEANS-5961:
-

I could be mistaken, but this may be related to the version of Maven you’re 
using. 

> System.out.print buffered to Output Window
> --
>
> Key: NETBEANS-5961
> URL: https://issues.apache.org/jira/browse/NETBEANS-5961
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.4, 12.5
> Environment: JDK 15
> macOS 11.5.2
>Reporter: David Green
>Priority: Major
>
> In NetBeans 12.4 and verified to also behave this way on NetBeans 12.5-beta2, 
> System.out.print is buffered such that it does not show up in the NetBeans 
> Output window until a System.out.println (or probably things like program 
> end, and some buffer full scenario).
>  
> Example code: 
>  
> {{package dgreen.printbug;}}
> {{import java.util.Scanner;}}
> {{/**}}
> {{ * Demo program showing that System.out.print's are not pushed to output 
> window until a}}
> {{ * System.out.println}}
> {{ */}}
> {{public class NewMain {}}
> {{  public static void main(String[] args) {}}
> {{    Scanner sc = new Scanner(System.in);}}
> {{    System.out.print("Enter your name: ");}}
> {{    System.out.flush(); // should not be necessary but does not work 
> either}}
> {{    String name = sc.nextLine();}}
> {{    System.out.println("Hi " + name);}}
> {{  }}}
> {{}}}
>  
> —-
> {{Running it after Clean & Build (or before)}}
> {{ }}
> {{--- exec-maven-plugin:3.0.0:exec (default-cli) @ printbug ---}}
> {{dave}}
> {{Enter your name: Hi dave}}
> 
> BUILD SUCCESS
>  
> where "dave" was typed in without the benefit of seeing the prompt.
>  
> This works fine when run from true command line either inside a NetBeans 
> Terminal Window or the real command line.
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406294#comment-17406294
 ] 

Geertjan Wielenga commented on NETBEANS-5960:
-

And, you've not followed the steps above if you're seeing this:

Hello world! Time on server is 2021-08-28T22:43:26.016

In step 5 you should see this:

Hello world of Spring! Time on server is 2021-08-28T21:12:27.429932

And in step 10, you should see this:

Hello!!!2021-08-28T21:17:29.133159

If you're doing things different to the steps I've provided above, then we're 
not doing the same thing, and I'm not able to help you.


> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406293#comment-17406293
 ] 

Geertjan Wielenga edited comment on NETBEANS-5960 at 8/28/21, 7:52 PM:
---

Make sure you refresh the browser and maybe try a different browser to see if 
it’s related to your browser.


was (Author: geertjanwielenga):
Make sure you refewsh and maybe try a different browser to see if it’s related 
to your browser.

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406293#comment-17406293
 ] 

Geertjan Wielenga commented on NETBEANS-5960:
-

Make sure you refewsh and maybe try a different browser to see if it’s related 
to your browser.

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Egor (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406292#comment-17406292
 ] 

Egor commented on NETBEANS-5960:


And... it's not working. As I've told before, in step 10 I see:

Hello world! Time on server is 2021-08-28T22:43:26.016

This is the text that was there the first time a ran this project. And it's 
certainly version 12.4, it can be seen on the screenshot.

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406290#comment-17406290
 ] 

Geertjan Wielenga edited comment on NETBEANS-5960 at 8/28/21, 7:18 PM:
---

OK, I'm going to provide you with the numbered steps, which work, please follow 
the below and confirm:

1. Open your project into Apache NetBeans 12.4 (look in the title bar and in 
the About box to confirm you are actually using 12.4).

2. Right-click the project and choose Run.

3. You'll see content in the Output window, ending with this:

2021-08-28 21:11:46.662  INFO 28488 --- [   main] 
c.l.s.d.s.SpringbootDemoApplication  : Started SpringbootDemoApplication in 
6.304 seconds (JVM running for 6.576)

4. Open the browser and go to http://localhost:8080.

5. In the browser you will now see this:

Hello world of Spring! Time on server is 2021-08-28T21:12:27.429932

6. In the Output window, click the red button (when you hover over it, this 
button says "Stop the currently executing build").

7. On line 21 of FunRestController.java, change line 21 to the following:

return "Hello!!!" + LocalDateTime.now();

8. Right-click the project and choose Run.

9. Look in the Output window and see the last line says:

2021-08-28 21:15:12.898  INFO 28588 --- [   main] 
c.l.s.d.s.SpringbootDemoApplication  : Started SpringbootDemoApplication in 
6.265 seconds (JVM running for 6.514)

10. Refresh the browser and you will see this:

Hello!!!2021-08-28T21:17:29.133159



was (Author: geertjanwielenga):
OK, I'm going to provide you with the numbered steps, which work, please follow 
the below and confirm:

1. Open your project into Apache NetBeans 12.4 (look in the title bar and in 
the About box to confirm you are actually using 12.4).

2. Right-click the project and choose Run.

3. You'll see content in the Output window, ending with this:

2021-08-28 21:11:46.662  INFO 28488 --- [   main] 
c.l.s.d.s.SpringbootDemoApplication  : Started SpringbootDemoApplication in 
6.304 seconds (JVM running for 6.576)

4. Open the browser and go to http://localhost:8080.

5. In the browser you will now see this:

Hello world of Spring! Time on server is 2021-08-28T21:12:27.429932

6. In the Output window, click the red button (when you hover over it, this 
button says "Stop the currently executing build".

7. On line 21 of FunRestController.java, change line 21 to the following:

return "Hello!!!" + LocalDateTime.now();

8. Right-click the project and choose Run.

9. Look in the Output window and see the last line says:

2021-08-28 21:15:12.898  INFO 28588 --- [   main] 
c.l.s.d.s.SpringbootDemoApplication  : Started SpringbootDemoApplication in 
6.265 seconds (JVM running for 6.514)

10. Refresh the browser and you will see this:

Hello!!!2021-08-28T21:17:29.133159


> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406290#comment-17406290
 ] 

Geertjan Wielenga commented on NETBEANS-5960:
-

OK, I'm going to provide you with the numbered steps, which work, please follow 
the below and confirm:

1. Open your project into Apache NetBeans 12.4 (look in the title bar and in 
the About box to confirm you are actually using 12.4).

2. Right-click the project and choose Run.

3. You'll see content in the Output window, ending with this:

2021-08-28 21:11:46.662  INFO 28488 --- [   main] 
c.l.s.d.s.SpringbootDemoApplication  : Started SpringbootDemoApplication in 
6.304 seconds (JVM running for 6.576)

4. Open the browser and go to http://localhost:8080.

5. In the browser you will now see this:

Hello world of Spring! Time on server is 2021-08-28T21:12:27.429932

6. In the Output window, click the red button (when you hover over it, this 
button says "Stop the currently executing build".

7. On line 21 of FunRestController.java, change line 21 to the following:

return "Hello!!!" + LocalDateTime.now();

8. Right-click the project and choose Run.

9. Look in the Output window and see the last line says:

2021-08-28 21:15:12.898  INFO 28588 --- [   main] 
c.l.s.d.s.SpringbootDemoApplication  : Started SpringbootDemoApplication in 
6.265 seconds (JVM running for 6.514)

10. Refresh the browser and you will see this:

Hello!!!2021-08-28T21:17:29.133159


> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Egor (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406288#comment-17406288
 ] 

Egor commented on NETBEANS-5960:


I've already told you.
 # Open FunRestController.java
 # Change the text in return to something new
 # Click Run in the toolbar
 # Open localhost:8080 in the browser
 # Observe the old text

Instead of the new text, I see the old text.

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406284#comment-17406284
 ] 

Geertjan Wielenga commented on NETBEANS-5960:
-

Please help me to help you. Provide steps related to your project so that I can 
help you with NetBeans:

1. Do the following...
2. Do the following...
3. Do the following...
4. ...

The expected result is:

Instead of the above, what I see is...

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Egor (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406281#comment-17406281
 ] 

Egor edited comment on NETBEANS-5960 at 8/28/21, 6:38 PM:
--

It doesn't help. I click the red button, change the text to Hello world of 
Spring Boot, run it again, open the browser and see Hello world: (that internal 
error swallowed the picture).

It looks like a caching bug.


was (Author: tuegor):
It doesn't help. I click the red button, change the text to Hello world of 
Spring Boot, run it again, open the browser and see Hello world: 
!screenshot.2021-08-28.png (1).png!

It looks like a caching bug.

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Egor (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406281#comment-17406281
 ] 

Egor commented on NETBEANS-5960:


It doesn't help. I click the red button, change the text to Hello world of 
Spring Boot, run it again, open the browser and see Hello world: 
!screenshot.2021-08-28.png (1).png!

It looks like a caching bug.

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406279#comment-17406279
 ] 

Geertjan Wielenga commented on NETBEANS-5960:
-

In the Output window, there is a red button to stop the running process. Click 
it, make your change, run it again.

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406277#comment-17406277
 ] 

Geertjan Wielenga commented on NETBEANS-5960:
-

You’ll need to stop the project first, then make the change, then run it again.

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406276#comment-17406276
 ] 

Geertjan Wielenga commented on NETBEANS-5960:
-

Indeed, that shows you that it is currently running. Not frozen, but that it is 
running and that you can open the browser to see the result.

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Egor (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406275#comment-17406275
 ] 

Egor commented on NETBEANS-5960:


By freezing I mean this (red arrow on the screenshot):  
!screenshot.2021-08-28.png.png.png!

Also there is a Stop item active in the Run menu. So it all points to the fact 
that the project is still in the process of building.

As for the steps needed, i make some changes to the text in the controller 
(like change Spring to Spring Boot), Run the project, but don't see these 
changes in the browser i.e. the old text is shown.

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Egor (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Egor updated NETBEANS-5960:
---
Attachment: screenshot.2021-08-28.png.png.png

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
> Attachments: screenshot.2021-08-28.png.png.png
>
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5937) Unable to run a Java FX project because "Browse JavaFX Applications Classes" Window appears and does nothing.

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406274#comment-17406274
 ] 

Geertjan Wielenga commented on NETBEANS-5937:
-

Are you using Ant or Maven with JavaFX? 

Maven would be best.

> Unable to run a Java FX project because "Browse JavaFX Applications Classes" 
> Window appears and does nothing.
> -
>
> Key: NETBEANS-5937
> URL: https://issues.apache.org/jira/browse/NETBEANS-5937
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.4
> Environment: See third screenshot.
>Reporter: Stephen David Cadwell
>Priority: Blocker
> Attachments: ScreenShots2021-08-21.pdf, 
> image-2021-08-28-07-51-52-953.png, image-2021-08-28-07-52-59-374.png, 
> screenshot-1.png
>
>
> I can't build or run any project because the pop-up shown in the second 
> screenshot attached just sits there and does nothing for hours (literally - 
> the current record is in excess of 12 hours). I get the same result trying 
> the default "Hello World" classes in both JavaFX and Java. The first 
> screenshot shows the JDK version installed. The third screenshot shows the 
> hardware and OS info.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-5961) System.out.print buffered to Output Window

2021-08-28 Thread David Green (Jira)
David Green created NETBEANS-5961:
-

 Summary: System.out.print buffered to Output Window
 Key: NETBEANS-5961
 URL: https://issues.apache.org/jira/browse/NETBEANS-5961
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 12.4, 12.5
 Environment: JDK 15

macOS 11.5.2
Reporter: David Green


In NetBeans 12.4 and verified to also behave this way on NetBeans 12.5-beta2, 
System.out.print is buffered such that it does not show up in the NetBeans 
Output window until a System.out.println (or probably things like program end, 
and some buffer full scenario).

 
Example code: 
 
{{package dgreen.printbug;}}
{{import java.util.Scanner;}}
{{/**}}
{{ * Demo program showing that System.out.print's are not pushed to output 
window until a}}
{{ * System.out.println}}
{{ */}}
{{public class NewMain {}}
{{  public static void main(String[] args) {}}
{{    Scanner sc = new Scanner(System.in);}}
{{    System.out.print("Enter your name: ");}}
{{    System.out.flush(); // should not be necessary but does not work either}}
{{    String name = sc.nextLine();}}
{{    System.out.println("Hi " + name);}}
{{  }}}
{{}}}
 
—-
{{Running it after Clean & Build (or before)}}
{{ }}
{{--- exec-maven-plugin:3.0.0:exec (default-cli) @ printbug ---}}
{{dave}}
{{Enter your name: Hi dave}}

BUILD SUCCESS
 
where "dave" was typed in without the benefit of seeing the prompt.
 
This works fine when run from true command line either inside a NetBeans 
Terminal Window or the real command line.
 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5937) Unable to run a Java FX project because "Browse JavaFX Applications Classes" Window appears and does nothing.

2021-08-28 Thread Stephen David Cadwell (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406273#comment-17406273
 ] 

Stephen David Cadwell commented on NETBEANS-5937:
-

I am beginning to wonder if following the getting started tutorial sets up an 
environment variable which is needed for subsequent projects - e.g. the 
location of the project folder. If that is the case, maybe the getting started 
document needs to indicate more of what is going on in the background. I would 
also say that a pop-up window that does nothing for hours without telling you 
why it is doing nothing is still a problem.

As to steps which might reproduce the problem - I am not now sure, but I might 
have changed the com.mycompany entry.

 

> Unable to run a Java FX project because "Browse JavaFX Applications Classes" 
> Window appears and does nothing.
> -
>
> Key: NETBEANS-5937
> URL: https://issues.apache.org/jira/browse/NETBEANS-5937
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.4
> Environment: See third screenshot.
>Reporter: Stephen David Cadwell
>Priority: Blocker
> Attachments: ScreenShots2021-08-21.pdf, 
> image-2021-08-28-07-51-52-953.png, image-2021-08-28-07-52-59-374.png, 
> screenshot-1.png
>
>
> I can't build or run any project because the pop-up shown in the second 
> screenshot attached just sits there and does nothing for hours (literally - 
> the current record is in excess of 12 hours). I get the same result trying 
> the default "Hello World" classes in both JavaFX and Java. The first 
> screenshot shows the JDK version installed. The third screenshot shows the 
> hardware and OS info.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406270#comment-17406270
 ] 

Geertjan Wielenga commented on NETBEANS-5960:
-

Not sure about it being frozen, not sure what you mean. Indeed, when you stop 
running the project, make a change, and then run it again, you’ll see your 
change in the browser.

Can you help me to help you: tell me step by step what I must do with your 
project to see your problem?

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-2842) Using of deprecated pack200 tool in nbm packaging

2021-08-28 Thread Eric Bresie (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2842?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406266#comment-17406266
 ] 

Eric Bresie edited comment on NETBEANS-2842 at 8/28/21, 5:32 PM:
-

There is a recent email thread that may also be worth including as references 
https://lists.apache.org/thread.html/r0876f473e042c3f229b75b3dc17c016a416c2ef26178a8fbd0c6b60e%40%3Cdev.netbeans.apache.org%3E


was (Author: ebresie):
There is a recent email thread that may also be worth including as references 
https://lists.apache.org/thread.html/r5abc5c6603d0ee0f4393354a86267e2cd007c6c36a1cbe0b1ff84c72%40%3Cdev.netbeans.apache.org%3E

> Using of deprecated pack200 tool in nbm packaging
> -
>
> Key: NETBEANS-2842
> URL: https://issues.apache.org/jira/browse/NETBEANS-2842
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - Plugin Manager
>Affects Versions: 11.3
>Reporter: Benjamin Graf
>Priority: Critical
>
> Netbeans plugins are mostly compressed in size by the JDK internal pack200 
> tool which is deprecated since JDK 11 ([https://openjdk.java.net/jeps/336]). 
> It should be thought about an alternative as it might get removed in next JDK 
> releases.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-2842) Using of deprecated pack200 tool in nbm packaging

2021-08-28 Thread Eric Bresie (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2842?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406266#comment-17406266
 ] 

Eric Bresie commented on NETBEANS-2842:
---

There is a recent email thread that may also be worth including as references 
https://lists.apache.org/thread.html/r5abc5c6603d0ee0f4393354a86267e2cd007c6c36a1cbe0b1ff84c72%40%3Cdev.netbeans.apache.org%3E

> Using of deprecated pack200 tool in nbm packaging
> -
>
> Key: NETBEANS-2842
> URL: https://issues.apache.org/jira/browse/NETBEANS-2842
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - Plugin Manager
>Affects Versions: 11.3
>Reporter: Benjamin Graf
>Priority: Critical
>
> Netbeans plugins are mostly compressed in size by the JDK internal pack200 
> tool which is deprecated since JDK 11 ([https://openjdk.java.net/jeps/336]). 
> It should be thought about an alternative as it might get removed in next JDK 
> releases.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-2842) Using of deprecated pack200 tool in nbm packaging

2021-08-28 Thread Eric Bresie (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2842?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406265#comment-17406265
 ] 

Eric Bresie commented on NETBEANS-2842:
---

[~peter.firmst...@zeus.net.au] Is https://github.com/pack200/pack200.git a 
viable alternatie?

> Using of deprecated pack200 tool in nbm packaging
> -
>
> Key: NETBEANS-2842
> URL: https://issues.apache.org/jira/browse/NETBEANS-2842
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - Plugin Manager
>Affects Versions: 11.3
>Reporter: Benjamin Graf
>Priority: Critical
>
> Netbeans plugins are mostly compressed in size by the JDK internal pack200 
> tool which is deprecated since JDK 11 ([https://openjdk.java.net/jeps/336]). 
> It should be thought about an alternative as it might get removed in next JDK 
> releases.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Egor (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406264#comment-17406264
 ] 

Egor commented on NETBEANS-5960:


But why is the run indicator at the bottom freeze? And most important, why is 
it running an old version of the project? It must recompile the project when I 
hit Run, which it isn't doing. And it's not the first time I encounter this. 
And my browser is Pale Moon.

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-2842) Using of deprecated pack200 tool in nbm packaging

2021-08-28 Thread Eric Bresie (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2842?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406257#comment-17406257
 ] 

Eric Bresie commented on NETBEANS-2842:
---

There is a related https://github.com/apache/netbeans/pull/2317 PR Check 
unpack200 and warn the user on JDK14+.  Not a fix but figured I would include 
it for references.

> Using of deprecated pack200 tool in nbm packaging
> -
>
> Key: NETBEANS-2842
> URL: https://issues.apache.org/jira/browse/NETBEANS-2842
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - Plugin Manager
>Affects Versions: 11.3
>Reporter: Benjamin Graf
>Priority: Critical
>
> Netbeans plugins are mostly compressed in size by the JDK internal pack200 
> tool which is deprecated since JDK 11 ([https://openjdk.java.net/jeps/336]). 
> It should be thought about an alternative as it might get removed in next JDK 
> releases.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406255#comment-17406255
 ] 

Geertjan Wielenga commented on NETBEANS-5960:
-

This message in the Output window tells you that the deployment succeeded, 
i.e., it isn't stuck, you just need to open your browser and go to the place 
specified in your code, i.e., localhost:8080.

2021-08-28 18:55:56.985  INFO 27715 --- [   main] 
c.l.s.d.s.SpringbootDemoApplication  : Started SpringbootDemoApplication in 
6.389 seconds (JVM running for 6.638)

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406254#comment-17406254
 ] 

Geertjan Wielenga commented on NETBEANS-5960:
-

Which browser is it (maybe time to upgrade your browser)?

The project you provided works perfectly. Take a look at the code to see what 
it should do, i.e., go here http://localhost:8080 and then you will see "Hello 
world of Spring! Time on server is 2021-08-28T18:51:37.632120".

If you click the button to stop the deployment, you can make a change to your 
message and then redeploy it to see your change.

If you're still encountering a problem, please provide steps so that I can 
reproduce the problem.

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Egor (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406252#comment-17406252
 ] 

Egor commented on NETBEANS-5960:


Updated. I'm using JDK 1.8 on Windows 7. And when I enter the Github page, I 
see a message on top that states that my browser is no longer supported. Also 
when I log into my account that I created before, no info is loaded, so I see 
that lack of support in action.

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Geertjan Wielenga updated NETBEANS-5960:

Component/s: javaee - Spring

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Spring
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Geertjan Wielenga updated NETBEANS-5960:

Affects Version/s: 12.4

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0, 12.4
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Geertjan Wielenga updated NETBEANS-5960:

Summary: Problem Running a SpringBoot Application  (was: Netbeans build 
gets frozen)

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0
>Reporter: Egor
>Assignee: Egor
>Priority: Blocker
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-5960) Problem Running a SpringBoot Application

2021-08-28 Thread Geertjan Wielenga (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Geertjan Wielenga updated NETBEANS-5960:

Priority: Minor  (was: Blocker)

> Problem Running a SpringBoot Application
> 
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0
>Reporter: Egor
>Assignee: Egor
>Priority: Minor
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Netbeans build gets frozen

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406242#comment-17406242
 ] 

Geertjan Wielenga commented on NETBEANS-5960:
-

Also, can you please provide the environment info requested above: Which JDK 
are you using to run NetBeans? Which operating system? Which JDK are you using 
for your application?


> Netbeans build gets frozen
> --
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0
>Reporter: Egor
>Assignee: Egor
>Priority: Blocker
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Netbeans build gets frozen

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406241#comment-17406241
 ] 

Geertjan Wielenga commented on NETBEANS-5960:
-

Can you remove the ZIP file and put the sources there instead?

And I'll bet all browsers support GitHub.

> Netbeans build gets frozen
> --
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0
>Reporter: Egor
>Assignee: Egor
>Priority: Blocker
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Netbeans build gets frozen

2021-08-28 Thread Egor (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406239#comment-17406239
 ] 

Egor commented on NETBEANS-5960:


Github doesn't support my browser, so I've uploaded it to Bitbucket. It's in 
the zip file. [https://bitbucket.org/Tuegor/java-tasks/src/master/] There is an 
update on the issue. Although the run indicator freezes, the project starts 
successfully, i.e. I can access it through the browser, but somewhy it's the 
old version of the project that starts, not the one I saved recently. Instead 
of printing "Hello world of Spring ..." it's printing "Hello world...".

> Netbeans build gets frozen
> --
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0
>Reporter: Egor
>Assignee: Egor
>Priority: Blocker
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Netbeans build gets frozen

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406206#comment-17406206
 ] 

Geertjan Wielenga commented on NETBEANS-5960:
-

Instead of uploading a ZIP here, put the source code on GitHub, point to the 
location here, and I’ll try to run it.

> Netbeans build gets frozen
> --
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0
>Reporter: Egor
>Assignee: Egor
>Priority: Blocker
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Netbeans build gets frozen

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406204#comment-17406204
 ] 

Geertjan Wielenga commented on NETBEANS-5960:
-

Which JDK are you using to run NetBeans? Which operating system? Which JDK are 
you using for your application? 

Did you install 12.4 from scratch?

I have used the Spring Initializr a lot, without a problem. Looking at the 
startup messages, at what point did it get stuck, i.e., the last messages shown 
might give you a clue to the problem.

I’m curious what the “minor additions” are. How can we really reproduce the 
problem without a description of your environment and a sequence of steps to do 
so?

> Netbeans build gets frozen
> --
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0
>Reporter: Egor
>Assignee: Egor
>Priority: Blocker
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5960) Netbeans build gets frozen

2021-08-28 Thread Egor (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406202#comment-17406202
 ] 

Egor commented on NETBEANS-5960:


As I expected, updating didn't solve the issue. In order to reproduce it, you 
need to run the project that I have (Actually it's the project downloaded from 
Spring Initializr with some minor additions). I tried to attach it here, but 
your system is saying "An internal error has occurred. Please contact your 
administrator."

[^springboot-demo-nb.zip]

> Netbeans build gets frozen
> --
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0
>Reporter: Egor
>Assignee: Egor
>Priority: Blocker
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5958) NPE at com.sun.tools.javac.comp.Modules.addVisiblePackages(Modules.java:1565)

2021-08-28 Thread Coupon (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5958?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406196#comment-17406196
 ] 

Coupon commented on NETBEANS-5958:
--

[http://coupongrabber.org/dealstore/tinder-gold-promo-code/]

> NPE at com.sun.tools.javac.comp.Modules.addVisiblePackages(Modules.java:1565)
> -
>
> Key: NETBEANS-5958
> URL: https://issues.apache.org/jira/browse/NETBEANS-5958
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Compiler
>Affects Versions: 12.4
> Environment: NetBeans 12.4 on Windows 10 on Java 11.0.11. nbjavac 
> plugin _not_ installed.
>Reporter: Eirik Bakke
>Priority: Major
>
> In a Maven-based Java project on NetBeans 12.4 with Java 11 and 
> Compile-on-Save enabled with vanilla javac (nbjavac _not_ installed), I'm 
> getting frequent NullPointerException notifications. Here is one of these NPE 
> stack traces:
> {noformat}
> SEVERE [org.openide.util.Exceptions]
> java.lang.NullPointerException
>   at 
> jdk.compiler/com.sun.tools.javac.comp.Modules.addVisiblePackages(Modules.java:1565)
>   at 
> jdk.compiler/com.sun.tools.javac.comp.Modules.initVisiblePackages(Modules.java:1551)
>   at 
> jdk.compiler/com.sun.tools.javac.comp.Modules$3.complete(Modules.java:1430)
>   at 
> jdk.compiler/com.sun.tools.javac.code.Symbol.complete(Symbol.java:642)
>   at jdk.compiler/com.sun.tools.javac.comp.Modules.enter(Modules.java:272)
>   at 
> jdk.compiler/com.sun.tools.javac.comp.Modules.initModules(Modules.java:233)
>   at 
> jdk.compiler/com.sun.tools.javac.main.JavaCompiler.initModules(JavaCompiler.java:1045)
>   at 
> jdk.compiler/com.sun.tools.javac.api.JavacTaskImpl.enter(JavacTaskImpl.java:328)
>   at 
> jdk.compiler/com.sun.tools.javac.api.JavacTaskImpl.ensureEntered(JavacTaskImpl.java:481)
>   at 
> jdk.compiler/com.sun.tools.javac.model.JavacElements.ensureEntered(JavacElements.java:779)
>   at 
> jdk.compiler/com.sun.tools.javac.model.JavacElements.doGetTypeElement(JavacElements.java:171)
>   at 
> jdk.compiler/com.sun.tools.javac.model.JavacElements.getTypeElement(JavacElements.java:160)
>   at 
> jdk.compiler/com.sun.tools.javac.model.JavacElements.getTypeElement(JavacElements.java:87)
>   at 
> org.netbeans.modules.java.source.parsing.CompilationInfoImpl.toPhase(CompilationInfoImpl.java:395)
>   at 
> org.netbeans.api.java.source.CompilationController.toPhase(CompilationController.java:88)
>   at 
> org.netbeans.modules.java.hints.declarative.DeclarativeHintsParser$1.run(DeclarativeHintsParser.java:480)
>   at 
> org.netbeans.modules.java.hints.declarative.DeclarativeHintsParser$1.run(DeclarativeHintsParser.java:477)
>   at 
> org.netbeans.modules.java.source.parsing.MimeTask.run(MimeTask.java:60)
>   at 
> org.netbeans.modules.parsing.impl.TaskProcessor.callUserTask(TaskProcessor.java:586)
>   at 
> org.netbeans.modules.parsing.api.ParserManager$MimeTaskAction.run(ParserManager.java:357)
>   at 
> org.netbeans.modules.parsing.api.ParserManager$MimeTaskAction.run(ParserManager.java:340)
>   at 
> org.netbeans.modules.parsing.impl.TaskProcessor$2.call(TaskProcessor.java:181)
>   at 
> org.netbeans.modules.parsing.impl.TaskProcessor$2.call(TaskProcessor.java:178)
>   at 
> org.netbeans.modules.masterfs.filebasedfs.utils.FileChangedManager.priorityIO(FileChangedManager.java:153)
>   at 
> org.netbeans.modules.masterfs.providers.ProvidedExtensions.priorityIO(ProvidedExtensions.java:335)
>   at 
> org.netbeans.modules.parsing.nb.DataObjectEnvFactory.runPriorityIO(DataObjectEnvFactory.java:118)
>   at 
> org.netbeans.modules.parsing.impl.Utilities.runPriorityIO(Utilities.java:67)
>   at 
> org.netbeans.modules.parsing.impl.TaskProcessor.runUserTask(TaskProcessor.java:178)
>   at 
> org.netbeans.modules.parsing.api.ParserManager.parse(ParserManager.java:311)
>   at 
> org.netbeans.api.java.source.JavaSource.runUserActionTaskImpl(JavaSource.java:431)
>   at 
> org.netbeans.api.java.source.JavaSource.runUserActionTask(JavaSource.java:423)
>   at 
> org.netbeans.modules.java.hints.declarative.DeclarativeHintsParser.resolve(DeclarativeHintsParser.java:477)
>   at 
> org.netbeans.modules.java.hints.declarative.DeclarativeHintsParser.access$000(DeclarativeHintsParser.java:83)
>   at 
> org.netbeans.modules.java.hints.declarative.DeclarativeHintsParser$Impl.parseCondition(DeclarativeHintsParser.java:311)
>   at 
> org.netbeans.modules.java.hints.declarative.DeclarativeHintsParser$Impl.parseConditions(DeclarativeHintsParser.java:258)
>   at 
> org.netbeans.modules.java.hints.declarative.DeclarativeHintsParser$Impl.parseRule(DeclarativeHintsParser.java:215)
>   at 
> 

[jira] [Commented] (NETBEANS-5960) Netbeans build gets frozen

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406190#comment-17406190
 ] 

Geertjan Wielenga commented on NETBEANS-5960:
-

Use the latest release, 12.4, if the problem can be reproduced there, please 
provide steps for doing so.

> Netbeans build gets frozen
> --
>
> Key: NETBEANS-5960
> URL: https://issues.apache.org/jira/browse/NETBEANS-5960
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.0
>Reporter: Egor
>Assignee: Egor
>Priority: Blocker
>
> I'm trying to run a demo Spring Boot project. When I press the Run button, it 
> first starts producing some output in the Run window, but then it freezes. 
> Now it's been frozen for about an hour. I mean the interface responds, but 
> the build is completely stuck. What info do I need to provide for you to fix 
> this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-5960) Netbeans build gets frozen

2021-08-28 Thread Egor (Jira)
Egor created NETBEANS-5960:
--

 Summary: Netbeans build gets frozen
 Key: NETBEANS-5960
 URL: https://issues.apache.org/jira/browse/NETBEANS-5960
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 12.0
Reporter: Egor
Assignee: Egor


I'm trying to run a demo Spring Boot project. When I press the Run button, it 
first starts producing some output in the Run window, but then it freezes. Now 
it's been frozen for about an hour. I mean the interface responds, but the 
build is completely stuck. What info do I need to provide for you to fix this?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5914) NetBeans 12.4 freezes on startup

2021-08-28 Thread Neil C Smith (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5914?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406179#comment-17406179
 ] 

Neil C Smith commented on NETBEANS-5914:


Thanks [~jtulach] Maybe not different though?  Don't they all share the common 
fact that the thread keeping the lock in DelegatingLookupImpl.doDelegate is 
stuck in LazyLookupProviders$1Prov$1.beforeLookup ?

> NetBeans 12.4 freezes on startup
> 
>
> Key: NETBEANS-5914
> URL: https://issues.apache.org/jira/browse/NETBEANS-5914
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.5
> Environment: NetBeans 12.4 on Zulu/OpenJDK 11 on Windows 10.
>Reporter: Eirik Bakke
>Assignee: Jaroslav Tulach
>Priority: Blocker
>  Labels: pull-request-available
> Fix For: 12.6
>
> Attachments: 12.5-beta2-threaddump-1629986898821.tdump, 210506 
> NetBeans Deadlock on Startup 2.txt, 210506 NetBeans Deadlock on Startup.txt, 
> 210516 Another NetBeans Deadlock.txt, 210526 NetBeans Deadlock again.txt
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> On NetBeans 12.4, I was previously experiencing some intermittent freezes on 
> startup, at the time when projects were being loaded and such. I did some 
> thread dumps of the frozen IDE using VisualVM. I'm uploading these now in 
> case they are related to NETBEANS-5913.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5937) Unable to run a Java FX project because "Browse JavaFX Applications Classes" Window appears and does nothing.

2021-08-28 Thread Geertjan Wielenga (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406138#comment-17406138
 ] 

Geertjan Wielenga commented on NETBEANS-5937:
-

Always happy to help if there is a sequence of steps for me to follow to be 
able to reproduce the problem.

> Unable to run a Java FX project because "Browse JavaFX Applications Classes" 
> Window appears and does nothing.
> -
>
> Key: NETBEANS-5937
> URL: https://issues.apache.org/jira/browse/NETBEANS-5937
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.4
> Environment: See third screenshot.
>Reporter: Stephen David Cadwell
>Priority: Blocker
> Attachments: ScreenShots2021-08-21.pdf, 
> image-2021-08-28-07-51-52-953.png, image-2021-08-28-07-52-59-374.png, 
> screenshot-1.png
>
>
> I can't build or run any project because the pop-up shown in the second 
> screenshot attached just sits there and does nothing for hours (literally - 
> the current record is in excess of 12 hours). I get the same result trying 
> the default "Hello World" classes in both JavaFX and Java. The first 
> screenshot shows the JDK version installed. The third screenshot shows the 
> hardware and OS info.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5937) Unable to run a Java FX project because "Browse JavaFX Applications Classes" Window appears and does nothing.

2021-08-28 Thread Stephen David Cadwell (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406136#comment-17406136
 ] 

Stephen David Cadwell commented on NETBEANS-5937:
-

 

!image-2021-08-28-07-52-59-374.png!

I have attached screenshots showing the IDE version and the environment - I 
hope these are more legible. I have worked round the problem by deleting the 
test projects and starting again from scratch - specifically following exactly 
the getting started tutorial. After that I was able to create a new project by 
copying and pasting my source code into a series of new files, which ran 
without showing the pop-up I had encountered before. There is still a problem 
of a pop-up which sits there doing nothing and giving no clues as to why. The 
trouble is now that I do not seem to be able to reproduce the original problem.

> Unable to run a Java FX project because "Browse JavaFX Applications Classes" 
> Window appears and does nothing.
> -
>
> Key: NETBEANS-5937
> URL: https://issues.apache.org/jira/browse/NETBEANS-5937
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.4
> Environment: See third screenshot.
>Reporter: Stephen David Cadwell
>Priority: Blocker
> Attachments: ScreenShots2021-08-21.pdf, 
> image-2021-08-28-07-51-52-953.png, image-2021-08-28-07-52-59-374.png, 
> screenshot-1.png
>
>
> I can't build or run any project because the pop-up shown in the second 
> screenshot attached just sits there and does nothing for hours (literally - 
> the current record is in excess of 12 hours). I get the same result trying 
> the default "Hello World" classes in both JavaFX and Java. The first 
> screenshot shows the JDK version installed. The third screenshot shows the 
> hardware and OS info.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-5937) Unable to run a Java FX project because "Browse JavaFX Applications Classes" Window appears and does nothing.

2021-08-28 Thread Stephen David Cadwell (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-5937?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Stephen David Cadwell updated NETBEANS-5937:

Attachment: screenshot-1.png

> Unable to run a Java FX project because "Browse JavaFX Applications Classes" 
> Window appears and does nothing.
> -
>
> Key: NETBEANS-5937
> URL: https://issues.apache.org/jira/browse/NETBEANS-5937
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.4
> Environment: See third screenshot.
>Reporter: Stephen David Cadwell
>Priority: Blocker
> Attachments: ScreenShots2021-08-21.pdf, 
> image-2021-08-28-07-51-52-953.png, image-2021-08-28-07-52-59-374.png, 
> screenshot-1.png
>
>
> I can't build or run any project because the pop-up shown in the second 
> screenshot attached just sits there and does nothing for hours (literally - 
> the current record is in excess of 12 hours). I get the same result trying 
> the default "Hello World" classes in both JavaFX and Java. The first 
> screenshot shows the JDK version installed. The third screenshot shows the 
> hardware and OS info.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-5937) Unable to run a Java FX project because "Browse JavaFX Applications Classes" Window appears and does nothing.

2021-08-28 Thread Stephen David Cadwell (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-5937?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Stephen David Cadwell updated NETBEANS-5937:

Attachment: image-2021-08-28-07-52-59-374.png

> Unable to run a Java FX project because "Browse JavaFX Applications Classes" 
> Window appears and does nothing.
> -
>
> Key: NETBEANS-5937
> URL: https://issues.apache.org/jira/browse/NETBEANS-5937
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.4
> Environment: See third screenshot.
>Reporter: Stephen David Cadwell
>Priority: Blocker
> Attachments: ScreenShots2021-08-21.pdf, 
> image-2021-08-28-07-51-52-953.png, image-2021-08-28-07-52-59-374.png
>
>
> I can't build or run any project because the pop-up shown in the second 
> screenshot attached just sits there and does nothing for hours (literally - 
> the current record is in excess of 12 hours). I get the same result trying 
> the default "Hello World" classes in both JavaFX and Java. The first 
> screenshot shows the JDK version installed. The third screenshot shows the 
> hardware and OS info.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-5937) Unable to run a Java FX project because "Browse JavaFX Applications Classes" Window appears and does nothing.

2021-08-28 Thread Stephen David Cadwell (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-5937?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Stephen David Cadwell updated NETBEANS-5937:

Attachment: image-2021-08-28-07-51-52-953.png

> Unable to run a Java FX project because "Browse JavaFX Applications Classes" 
> Window appears and does nothing.
> -
>
> Key: NETBEANS-5937
> URL: https://issues.apache.org/jira/browse/NETBEANS-5937
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.4
> Environment: See third screenshot.
>Reporter: Stephen David Cadwell
>Priority: Blocker
> Attachments: ScreenShots2021-08-21.pdf, 
> image-2021-08-28-07-51-52-953.png
>
>
> I can't build or run any project because the pop-up shown in the second 
> screenshot attached just sits there and does nothing for hours (literally - 
> the current record is in excess of 12 hours). I get the same result trying 
> the default "Hello World" classes in both JavaFX and Java. The first 
> screenshot shows the JDK version installed. The third screenshot shows the 
> hardware and OS info.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-5914) NetBeans 12.4 freezes on startup

2021-08-28 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-5914?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

ASF GitHub Bot updated NETBEANS-5914:
-
Labels: pull-request-available  (was: )

> NetBeans 12.4 freezes on startup
> 
>
> Key: NETBEANS-5914
> URL: https://issues.apache.org/jira/browse/NETBEANS-5914
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.5
> Environment: NetBeans 12.4 on Zulu/OpenJDK 11 on Windows 10.
>Reporter: Eirik Bakke
>Assignee: Jaroslav Tulach
>Priority: Blocker
>  Labels: pull-request-available
> Fix For: 12.6
>
> Attachments: 12.5-beta2-threaddump-1629986898821.tdump, 210506 
> NetBeans Deadlock on Startup 2.txt, 210506 NetBeans Deadlock on Startup.txt, 
> 210516 Another NetBeans Deadlock.txt, 210526 NetBeans Deadlock again.txt
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> On NetBeans 12.4, I was previously experiencing some intermittent freezes on 
> startup, at the time when projects were being loaded and such. I did some 
> thread dumps of the frozen IDE using VisualVM. I'm uploading these now in 
> case they are related to NETBEANS-5913.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-5914) NetBeans 12.4 freezes on startup

2021-08-28 Thread Jaroslav Tulach (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5914?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406126#comment-17406126
 ] 

Jaroslav Tulach edited comment on NETBEANS-5914 at 8/28/21, 6:31 AM:
-

The new  [^12.5-beta2-threaddump-1629986898821.tdump]  dump doesn't contain the 
word "auxiliary" like the previous ones ( [^210506 NetBeans Deadlock on 
Startup.txt]  and  [^210506 NetBeans Deadlock on Startup 2.txt] and   [^210526 
NetBeans Deadlock again.txt] ). 

The  [^12.5-beta2-threaddump-1629986898821.tdump] and [^210516 Another NetBeans 
Deadlock.txt] are different - e.g. without "auxiliary". 
[PR-3136|https://github.com/apache/netbeans/pull/3136] shall fix 
[^12.5-beta2-threaddump-1629986898821.tdump].


was (Author: jtulach):
The new  [^12.5-beta2-threaddump-1629986898821.tdump]  dump doesn't contain the 
word "auxiliary" like the previous ones ( [^210506 NetBeans Deadlock on 
Startup.txt]  and  [^210506 NetBeans Deadlock on Startup 2.txt] and   [^210526 
NetBeans Deadlock again.txt] ). 

The  [^12.5-beta2-threaddump-1629986898821.tdump] and [^210516 Another NetBeans 
Deadlock.txt] are different - e.g. without "auxiliary".

> NetBeans 12.4 freezes on startup
> 
>
> Key: NETBEANS-5914
> URL: https://issues.apache.org/jira/browse/NETBEANS-5914
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.5
> Environment: NetBeans 12.4 on Zulu/OpenJDK 11 on Windows 10.
>Reporter: Eirik Bakke
>Assignee: Jaroslav Tulach
>Priority: Blocker
>  Labels: pull-request-available
> Fix For: 12.6
>
> Attachments: 12.5-beta2-threaddump-1629986898821.tdump, 210506 
> NetBeans Deadlock on Startup 2.txt, 210506 NetBeans Deadlock on Startup.txt, 
> 210516 Another NetBeans Deadlock.txt, 210526 NetBeans Deadlock again.txt
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> On NetBeans 12.4, I was previously experiencing some intermittent freezes on 
> startup, at the time when projects were being loaded and such. I did some 
> thread dumps of the frozen IDE using VisualVM. I'm uploading these now in 
> case they are related to NETBEANS-5913.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-5914) NetBeans 12.4 freezes on startup

2021-08-28 Thread Jaroslav Tulach (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-5914?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17406126#comment-17406126
 ] 

Jaroslav Tulach commented on NETBEANS-5914:
---

The new  [^12.5-beta2-threaddump-1629986898821.tdump]  dump doesn't contain the 
word "auxiliary" like the previous ones ( [^210506 NetBeans Deadlock on 
Startup.txt]  and  [^210506 NetBeans Deadlock on Startup 2.txt] and   [^210526 
NetBeans Deadlock again.txt] ). 

The  [^12.5-beta2-threaddump-1629986898821.tdump] and [^210516 Another NetBeans 
Deadlock.txt] are different - e.g. without "auxiliary".

> NetBeans 12.4 freezes on startup
> 
>
> Key: NETBEANS-5914
> URL: https://issues.apache.org/jira/browse/NETBEANS-5914
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 12.5
> Environment: NetBeans 12.4 on Zulu/OpenJDK 11 on Windows 10.
>Reporter: Eirik Bakke
>Assignee: Jaroslav Tulach
>Priority: Blocker
> Fix For: 12.6
>
> Attachments: 12.5-beta2-threaddump-1629986898821.tdump, 210506 
> NetBeans Deadlock on Startup 2.txt, 210506 NetBeans Deadlock on Startup.txt, 
> 210516 Another NetBeans Deadlock.txt, 210526 NetBeans Deadlock again.txt
>
>
> On NetBeans 12.4, I was previously experiencing some intermittent freezes on 
> startup, at the time when projects were being loaded and such. I did some 
> thread dumps of the frozen IDE using VisualVM. I'm uploading these now in 
> case they are related to NETBEANS-5913.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists