This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Entity | |
public class Portal extends AbstractPersistable<Long> { | |
private String name; | |
@OneToMany(mappedBy = "portal", cascade = CascadeType.ALL) | |
private List<Page> pages; | |
... | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Entity | |
public class Page extends AbstractPersistable<Long> { | |
private String name; | |
@ManyToOne | |
private Portal portal; | |
... | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface PageRepository extends CrudRepository<Page, Long> { | |
} | |
public interface PortalRepository extends CrudRepository<Portal, Long> { | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-data-jpa</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-data-rest</artifactId> | |
</dependency> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Service | |
@Profile("default") | |
public class DatabaseLoader { | |
private final PageRepository pageRepository; | |
private final PortalRepository portalRepository; | |
@Autowired | |
public DatabaseLoader(PageRepository pageRepository, PortalRepository portalRepository) { | |
this.pageRepository = pageRepository; | |
this.portalRepository = portalRepository; | |
} | |
@PostConstruct | |
private void initDatabase() { | |
Portal portal = new Portal("ABN AMRO Retail Banking"); | |
portalRepository.save(portal); | |
Page page = new Page(); | |
page.setName("login"); | |
page.setPortal(portal); | |
pageRepository.save(page); | |
page = new Page(); | |
page.setName("accounts"); | |
page.setPortal(portal); | |
pageRepository.save(page); | |
page = new Page(); | |
page.setName("profile"); | |
page.setPortal(portal); | |
pageRepository.save(page); | |
} | |
} |
Next we just need to start the application. With the following glue code we can start it as a standalone application (java -jar). It will also work if we drop the produced war file in a Servlet 3.0 servlet container.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ComponentScan | |
@EnableAutoConfiguration | |
public class Application extends SpringBootServletInitializer { | |
public static void main(String[] args) { | |
SpringApplication.run(Application.class, args); | |
} | |
@Override | |
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { | |
return application.sources(Application.class); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2014-10-25 22:47:22.337 DEBUG 22802 --- [ost-startStop-1] org.hibernate.SQL : drop table page if exists | |
2014-10-25 22:47:22.337 DEBUG 22802 --- [ost-startStop-1] org.hibernate.SQL : drop table portal if exists | |
2014-10-25 22:47:22.337 DEBUG 22802 --- [ost-startStop-1] org.hibernate.SQL : create table page (id bigint generated by default as identity, name varchar(255), portal_id bigint, primary key (id)) | |
2014-10-25 22:47:22.341 DEBUG 22802 --- [ost-startStop-1] org.hibernate.SQL : create table portal (id bigint generated by default as identity, name varchar(255), primary key (id)) | |
... | |
2014-10-25 22:47:23.292 DEBUG 22802 --- [ main] org.hibernate.SQL : insert into portal (id, name) values (null, ?) | |
2014-10-25 22:47:23.315 DEBUG 22802 --- [ main] org.hibernate.SQL : insert into page (id, name, portal_id) values (null, ?, ?) | |
2014-10-25 22:47:23.318 DEBUG 22802 --- [ main] org.hibernate.SQL : insert into page (id, name, portal_id) values (null, ?, ?) | |
2014-10-25 22:47:23.319 DEBUG 22802 --- [ main] org.hibernate.SQL : insert into page (id, name, portal_id) values (null, ?, ?) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
spring.jpa.hibernate.ddl-auto=none | |
spring.datasource.url=jdbc:mysql://localhost/test | |
spring.datasource.username= | |
spring.datasource.password= |
With the next release of Spring Boot (in 1.2.0-SNAPSHOT is already available) it will be possible to reference the datasource via JNDI, which is very common in traditional deployment setups where the datasources are configured inside the application server. Of course we can do this already with Spring using JndiDataSourceLookup but it got easier using Spring Boot, without using infrastructure beans. In order to demonstrate this, I have deployed the application into JBoss Wildfly, and created another Spring profile called jboss with the following configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
spring.datasource.jndi-name=java:jboss/datasources/MySQLDataSource |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
<subsystem xmlns="urn:jboss:domain:datasources:2.0"> | |
<datasources> | |
<datasource jndi-name="java:jboss/datasources/MySQLDataSource" pool-name="MySQLDataSourcePool" enabled="true" use-java-context="true"> | |
<connection-url>jdbc:mysql://localhost/test</connection-url> | |
<driver>mysql</driver> | |
</datasource> | |
<drivers> | |
<driver name="mysql" module="com.mysql"> | |
<datasource-class>com.mysql.jdbc.Driver</datasource-class> | |
</driver> | |
</drivers> | |
</datasources> | |
</subsystem> | |
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<module xmlns="urn:jboss:module:1.3" name="com.mysql"> | |
<resources> | |
<resource-root path="mysql-connector-java-5.1.32.jar"/> | |
</resources> | |
<dependencies> | |
<module name="javax.api"/> | |
<module name="javax.transaction.api"/> | |
</dependencies> | |
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SPRING_PROFILES_ACTIVE=jboss ./standalone.sh -c standalone-backbase.xml |
10 comments:
Nice post. Thank you for taking the time to write this up. And thank you for changing the layout. The other version of the bookshelf kept pulling my focus making your blog to read.
Hi, I have deployed on wildly however when I'm trying to call the rest services I have the 404 error
Whats is a mapping, I'm trying
http://localhost:8080/war-file-name/pages
Great Article
Projects for ECE Final Year Students Final Year Project Centers in Chennai
Tetapi ada sejarahwan lainnya ada yang yakini kalau orang pertama yang membuat permainan itu bernama Keung Tai Kung di era 12 SM.
asikqq
dewaqq
sumoqq
interqq
pionpoker
bandar ceme terbaik
hobiqq
paito warna
bocoran sgp
data hk
Are you looking for a business loan, personal loans, mortgage loans, car loans, student loans, unsecured consolidation loans,project funding etc ... Or simply refuse loan from a bank or financial institution for one or more reasons? We are the right solutions for credit! We offer loans to businesses and individuals with low and affordable interest rate of 2%. So if you are Interested in an urgent and secured loan. For more information kindly email us today Via: elegantloanfirm@hotmail.com.
Do you want a fresh way of publishing your articles on the internet? If so, you should consider using our news website templates since are was designed and developed specifically to meet that need.
Amazing article
Internship providing companies in chennai | Where to do internship | internship opportunities in Chennai | internship offer letter | What internship should i do | How internship works | how many internships should i do ? | internship and inplant training difference | internship guidelines for students | why internship is necessary
Hi, their colleagues, nice paragraph and nice arguments commented here, I am really enjoying by these.
Cusat University Exam Time Table 2021
Datta Meghe University Exam Time Table 2021
JRRSU Exam Time Table 2021
Post a Comment