Re: Spring Boot Properties

2023-05-31 Thread Tim de Vries

Hello,

So my platform software, which should be run "on-top-of", Netbeans, 
Terminal, IntelliJ, Codeblocks, Notepad++, etc,


Try That. Let me know how it works. t...@tecreations.ca. 
Canada.Alberta.Heisler. @#$Worldwide.


Bye.

Tim

On 2023-05-29 7:08 p.m., David Soles wrote:

First of all, thanks for your hard work.
I was wondering why **NetBeans* Language Server for Java (VS Code) 
*supports Spring Boot property file autocompletion, but the full 
NetBeans IDE doesn't. It weird!


--
David Soles

Spring Boot Properties

2023-05-29 Thread David Soles
First of all, thanks for your hard work.
I was wondering why NetBeans Language Server for Java (VS Code) supports Spring 
Boot property file autocompletion, but the full NetBeans IDE doesn't. It weird!

--
David Soles

Re: Spring Boot

2019-05-22 Thread Carl Mosca
You can tell NetBeans to skip the tests on particular actions just to see
it build/compile cleanly.

Project -> Properties -> Actions -> Clean and Build project (for example)
then use the Add button to add Skip Tests.

Ultimately you'll want some tests and to resolve what's broken but my main
point is that NB plays nicely with maven out of the box.

On Wed, May 22, 2019 at 3:38 PM Michael Spence  wrote:

> The Initializer suggestion was a great help.  I still am having some
> issues figuring out which classes are in which maven artifacts but
> findjar was helpful and then I discovered "Add Dependency" in Netbeans.
> My code is compiling ok but the build fails because I am
> still having to track down things in the test package that aren't there.
>
> Anyway, thanks for your help.
>
> Michael D. Spence
> Mockingbird Data Systems, Inc.
>
>
> On Tue, May 21, 2019 at 4:42 PM John McDonnell 
> wrote:
>
>> What problem are you getting?
>>
>> When I'm starting a spring boot application I start @
>> https://start.spring.io/ and generate a Maven project.  Download this
>> and open it in NetBeans without any issues.
>>
>> Note with NetBeans 11 now, you can also generate a Gradle project, and
>> there use to be a plugin to avoid the website, but I think the website is
>> the way to go...
>>
>> Regards
>>
>> John
>>
>> On Tue, 21 May 2019 at 22:19,  wrote:
>>
>>> Try this introduction
>>>
>>> https://www.baeldung.com/the-persistence-layer-with-spring-data-jpa
>>>
>>> It uses maven to get all dependencies.
>>>
>>> I had no problems.
>>>
>>> Daniel
>>>
>>> Dne 21.05.2019 23:04, Michael Spence napsal:
>>>
>>> I am trying to set up a project using Spring Boot to avoid "just use
>>> Eclipse".  I have not been able to get this to work in either 8.2 or 11
>>> (not sure if 11 is supposed to support this).  Is there a how-to somewhere,
>>> or even a pom that works that I could study?
>>>
>>> Thanks,
>>> Michael D. Spence
>>> Mockingbird Data Systems, Inc.
>>>
>>>
>>>
>>>

-- 
Carl J. Mosca


Re: Spring Boot

2019-05-22 Thread Michael Spence
The Initializer suggestion was a great help.  I still am having some issues
figuring out which classes are in which maven artifacts but
findjar was helpful and then I discovered "Add Dependency" in Netbeans.  My
code is compiling ok but the build fails because I am
still having to track down things in the test package that aren't there.

Anyway, thanks for your help.

Michael D. Spence
Mockingbird Data Systems, Inc.


On Tue, May 21, 2019 at 4:42 PM John McDonnell 
wrote:

> What problem are you getting?
>
> When I'm starting a spring boot application I start @
> https://start.spring.io/ and generate a Maven project.  Download this and
> open it in NetBeans without any issues.
>
> Note with NetBeans 11 now, you can also generate a Gradle project, and
> there use to be a plugin to avoid the website, but I think the website is
> the way to go...
>
> Regards
>
> John
>
> On Tue, 21 May 2019 at 22:19,  wrote:
>
>> Try this introduction
>>
>> https://www.baeldung.com/the-persistence-layer-with-spring-data-jpa
>>
>> It uses maven to get all dependencies.
>>
>> I had no problems.
>>
>> Daniel
>>
>> Dne 21.05.2019 23:04, Michael Spence napsal:
>>
>> I am trying to set up a project using Spring Boot to avoid "just use
>> Eclipse".  I have not been able to get this to work in either 8.2 or 11
>> (not sure if 11 is supposed to support this).  Is there a how-to somewhere,
>> or even a pom that works that I could study?
>>
>> Thanks,
>> Michael D. Spence
>> Mockingbird Data Systems, Inc.
>>
>>
>>
>>


Re: Spring Boot

2019-05-21 Thread John McDonnell
What problem are you getting?

When I'm starting a spring boot application I start @
https://start.spring.io/ and generate a Maven project.  Download this and
open it in NetBeans without any issues.

Note with NetBeans 11 now, you can also generate a Gradle project, and
there use to be a plugin to avoid the website, but I think the website is
the way to go...

Regards

John

On Tue, 21 May 2019 at 22:19,  wrote:

> Try this introduction
>
> https://www.baeldung.com/the-persistence-layer-with-spring-data-jpa
>
> It uses maven to get all dependencies.
>
> I had no problems.
>
> Daniel
>
> Dne 21.05.2019 23:04, Michael Spence napsal:
>
> I am trying to set up a project using Spring Boot to avoid "just use
> Eclipse".  I have not been able to get this to work in either 8.2 or 11
> (not sure if 11 is supposed to support this).  Is there a how-to somewhere,
> or even a pom that works that I could study?
>
> Thanks,
> Michael D. Spence
> Mockingbird Data Systems, Inc.
>
>
>
>


Re: Spring Boot

2019-05-21 Thread Jonathan Bergh
I have found the Springboot plugin for Netbeans works really well,
including the SpringBoot Initializer. You get x2 nice Maven project types.

Works fine in 8.2 & 10 so far.

Search for it in the plugins listing

On Tue, May 21, 2019 at 11:19 PM  wrote:

> Try this introduction
>
> https://www.baeldung.com/the-persistence-layer-with-spring-data-jpa
>
> It uses maven to get all dependencies.
>
> I had no problems.
>
> Daniel
>
> Dne 21.05.2019 23:04, Michael Spence napsal:
>
> I am trying to set up a project using Spring Boot to avoid "just use
> Eclipse".  I have not been able to get this to work in either 8.2 or 11
> (not sure if 11 is supposed to support this).  Is there a how-to somewhere,
> or even a pom that works that I could study?
>
> Thanks,
> Michael D. Spence
> Mockingbird Data Systems, Inc.
>
>
>
>


Re: Spring Boot

2019-05-21 Thread daniel
Try this introduction 

https://www.baeldung.com/the-persistence-layer-with-spring-data-jpa 

It uses maven to get all dependencies. 

I had no problems. 

Daniel 

Dne 21.05.2019 23:04, Michael Spence napsal:

> I am trying to set up a project using Spring Boot to avoid "just use 
> Eclipse".  I have not been able to get this to work in either 8.2 or 11 (not 
> sure if 11 is supposed to support this).  Is there a how-to somewhere, or 
> even a pom that works that I could study? 
> 
> Thanks, 
> Michael D. Spence 
> Mockingbird Data Systems, Inc.

Spring Boot

2019-05-21 Thread Michael Spence
I am trying to set up a project using Spring Boot to avoid "just use
Eclipse".  I have not been able to get this to work in either 8.2 or 11
(not sure if 11 is supposed to support this).  Is there a how-to somewhere,
or even a pom that works that I could study?

Thanks,
Michael D. Spence
Mockingbird Data Systems, Inc.