netbeans

Integrate WildFly 13 server and Netbeans

In the post I wrote how install WildFly , today I desribe how integrate it with Netbeans IDE. After download and unzipped Wi ... et during adding server) and see wildfly website.After clicking Administration Console you see content similar to this below.

Maven Project in Netbeans 8 with JPA 2.1, Hibernate 5 and SQL Server 2012 database

This work begin with connect SQL Server 2012 database in Netbeans. I show how it do in Add connection in Netbeans 8 to the S ... Tables node in database: After run application:If you view data set, you see data in table which you insert into main class:

Insert data into the existing table of PostgreSQL 9 with Hibernate 5, JPA in Maven Project in Netbeans 8

You have table people created in mydb in PostgreSQL(id as serial and primary key and name columns). We create it in post:Cre ... = GenerationType.IDENTITY) private Long id; private String name; ... And run application and get data from database:

JDBC connection to SQLite in Java code in Netbeans

This topic describes how write Java code of connection to SQLite Database in Netbeans. First step is create in Netbeans simp ... aries node in Projects window You see driver for SQLite. If You run this application and all will be OK, the result appear:

How add driver and connect to Firebird server in Netbeans 8

First download jdbc driver for firebird database. Got to http://www.firebirdsql.org/en/jdbc-driver/ website and click on Jay ... select Disconnect if you don’t work on this database. On the list of connection icon of firebird connection will be broken.

Add connection in Netbeans 8 to the SQL Server 2012 database.

If you have added driver for SQL Server 2012, You may set connection to test database. So go to Services window and right cl ... y public and sysadmin: In User Mapping tab for test database it is choose only db_owner and public role. It is Status tab:  

How add another tomcat server to Netbeans?

While installing Netbeans IDE it is install GlassFish server and Tomcat server if you customize it. But if you have only Gla ... n Server window You see in Connection tab your configuration data. Click the Close button and work with new  Tomcat 8 server.

How create HTML project in Netbeans having a connection to the LESS compilator for CSS file?

In this topic we create HTML project in Netbeans 8.2. This project will be use LESS compilator for CSS file. First select fr ... @mainColor ; } p { color: @pColor ; } Now in browser you see: The existing CSS file was changed after changed in LESS file.  

Configuration SQL Server 2012 for Netbeans

SQL Server 2012 has SQL Server Configuration Manager tool.  Choose from OS Start-> All programms->Microsoft SQL Server ... d choose Properties(Właściwości). In Protocol tab you must set Default Port as 1433 and Enabled as Yes. Click the OK button.

Partial view in Netbeans 7.4 application project in Zend 1.12

In this post I describe how create application project using partial view. Partial view is view to which  link  several anot ... l animals selected from animal table from database. And if You click on second link, You see groups with list of its animals.

Database application in Zend Framework 1.12.3 in Netbeans 7.4 get data from several relational tables.

Let’s beginn Your work from create database magazine. In it create 3 tables: article,news, author.Author table contains colu ... ton.Choose Zend PHP Web Framework from list of frameworks and click on Finish button.You see Zend project in tree structure.

Two ways for move war file from Netbeans to Tomcat 8.

In last post we create in Netbeans WebApp application(jsp website). But if you want to run this application in tomcat withou ... ager App in tomcat and deploy this application, in webapps folder in tomcat will be unpacked war archive as webapp catalogue.

Pagination in Zend Framework 1.12

One day, when I was creating application in Zend I came accross problem with display a lot of records from database. All the ... and so on. Some of them You send to the view. You may change either index.phtml view file. Paste its code for it: Trees

Creating form in Zend Framework in Netbeans IDE

My another work in Zend Framework is forms. In this post I show You how creating form with several form elements. Begin with ... this file code: My form If You call only form variable for current object You see all form. Run application and see result:

Database application in Zend Framework 1.12.3 in Netbeans 7.4 get data from several relational tables.

In last post You create Zend project: magazine. Lets open in Your project application.ini file( application/configs folder). ... s action index controller. It’s name is authors. In layout.phtml file add code with links for authors and articles websites.

Connection to MySQL database from Zend framework 1.12.3 in Netbeans

First create in MySQL server country_db database with only one table country. I do it by means of phpMyAdmin. You write in e ... try continent                                                                                   Here You run Your project.

Zend Framework 1.12.3, part 4 – more actions for controller

Today I decide to add several actions to my animals controller. I have describe action, so I add else two: sepia and whitebl ... its content. And paste into sepia.phtml and whiteblack.phtml. In sepia.phtml change content for it: My dog in sepia picture

Configuration Netbeans 7.4 for Zend Framework 1.12.3

My favorite editor for programming is Netbeans.  I would like to create Zend framework projects. So after installing Netbean ... iguration for Zend, clicking on Zend tab. In this window You may change Your configuration for xampp, php or Zend framework.

Zend Framework 1.12.3, part 3 – adding layout to project

In last post You build application with your controller animals and actiondescribe. In this part we rebuild our application, ...      } And this new structure of application:In layout.phtml add new line after meta tag:Lets see result running application.

In Zend Framework 1.12 Application error: No adapter found for Application Model DbTable

I met last time situation in that I run my application with error: No adapter found for Application_Model_DbTable. What’s wr ... tion.ini file and paste it before [staging : production] section: Running application You see list of animals from database.