r1gm commented on issue #7863:
URL: https://github.com/apache/netbeans/issues/7863#issuecomment-2423483590
Step :
1. Open Project
2. Open context.xml
3. Right Click on Project
4. Select Properties on menu
5. Select Run
6. Then Press OK
you will see, context.xml formated from :
```
<?xml version="1.0" encoding="UTF-8"?>
<Context path="/thisisexample">
<Resource auth="Container"
defaultAutoCommit="true"
driverClassName="org.supersql.jdbc.SuperDriver"
maxIdle="10"
maxTotal="20"
maxWaitMillis="10000"
name="jdbc/testDB"
password="password"
type="javax.sql.DataSource"
url="jdbc:supersql://localhost/test"
username="username"
validationQuery="SELECT * FROM foo"/>
</Context>
```
to :
```
<?xml version="1.0" encoding="UTF-8"?>
<Context path="/thisisexample">
<Resource auth="Container" defaultAutoCommit="true"
driverClassName="org.supersql.jdbc.SuperDriver" maxIdle="10" maxTotal="20"
maxWaitMillis="10000" name="jdbc/testDB" password="password"
type="javax.sql.DataSource" url="jdbc:supersql://localhost/test"
username="username" validationQuery="SELECT * FROM foo"/>
</Context>
``
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists